Closed
Bug 177884
Opened 22 years ago
Closed 12 years ago
remove unneeded uses of nsCOMPtr<T>::get from the tree
Categories
(Core :: XPCOM, defect, P3)
Core
XPCOM
Tracking
()
RESOLVED
INCOMPLETE
Future
People
(Reporter: dbaron, Assigned: dbaron)
References
Details
We should remove unneeded (mainly due to the fix for bug 65664) uses of
nsCOMPtr<T>::get from the tree. Their continued presence in the tree makes
people think they're still needed, which makes understanding nsCOMPtr harder.
A way to do this would be to:
* pull a clean tree
* rename |get| to |xget| or something like that
* let the compiler find all the uses of get, and change the correct ones to
xget and remove the ones that are no longer needed.
* diff the tree to make a patch
* reverse-apply the patch
* search replace the patch s/xget/get/
* reapply the patch
* make a new (correct) patch by diffing the tree again
Assignee | ||
Updated•22 years ago
|
Severity: normal → minor
Status: NEW → ASSIGNED
Priority: -- → P3
Target Milestone: --- → Future
Updated•19 years ago
|
QA Contact: scc → xpcom
Updated•12 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → INCOMPLETE
You need to log in
before you can comment on or make changes to this bug.
Description
•