Closed
Bug 603731
Opened 15 years ago
Closed 15 years ago
mozilla/view/src/nsViewManager.cpp:603: warning: unused variable 'viewManager'
Categories
(Core :: Graphics, defect)
Core
Graphics
Tracking
()
RESOLVED
FIXED
mozilla2.0b7
People
(Reporter: dholbert, Assigned: dholbert)
References
Details
(Whiteboard: [build_warning])
Attachments
(1 file)
|
1.12 KB,
patch
|
tnikkel
:
review+
joe
:
approval2.0+
|
Details | Diff | Splinter Review |
This checkin from bug 596414:
http://hg.mozilla.org/mozilla-central/rev/9c33280093f8
introduced this GCC build warning:
> mozilla/view/src/nsViewManager.cpp:603: warning: unused variable 'viewManager'
That was from this chunk of the patch (which removes the only uses of |viewManager| without deleting the variable itself):
{
nsViewManager* viewManager = view->GetViewManager();
- if (viewManager->RootViewManager() == RootViewManager()) {
- // get the damage region into view's coordinate system and appunits
- nsRegion damage =
- ConvertRegionBetweenViews(intersection, aWidgetView, view);
- // Update the child and it's children
- viewManager->
- UpdateWidgetArea(view, childWidget, damage, aIgnoreWidgetView);
}
| Assignee | ||
Updated•15 years ago
|
Assignee: nobody → dholbert
Status: NEW → ASSIGNED
| Assignee | ||
Comment 1•15 years ago
|
||
Attachment #482635 -
Flags: review?(joe)
| Assignee | ||
Updated•15 years ago
|
Attachment #482635 -
Flags: review?(joe) → review?(tnikkel)
Updated•15 years ago
|
Attachment #482635 -
Flags: review?(tnikkel) → review+
| Assignee | ||
Comment 2•15 years ago
|
||
Comment on attachment 482635 [details] [diff] [review]
fix
Requesting approval. (Trivial change, to remove a no-longer-used variable.)
Attachment #482635 -
Flags: approval2.0?
Updated•15 years ago
|
Attachment #482635 -
Flags: approval2.0? → approval2.0+
| Assignee | ||
Comment 3•15 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla2.0b8
Updated•15 years ago
|
Target Milestone: mozilla2.0b8 → mozilla2.0b7
You need to log in
before you can comment on or make changes to this bug.
Description
•