Closed
Bug 665359
Opened 13 years ago
Closed 13 years ago
Remove unused variable res from nsHTMLEditor::AddPositioningOffset
Categories
(Core :: DOM: Editor, defect)
Core
DOM: Editor
Tracking
()
VERIFIED
FIXED
mozilla7
People
(Reporter: emorley, Assigned: emorley)
References
(Blocks 1 open bug, )
Details
(Whiteboard: [build_warning])
Attachments
(1 file)
(deleted),
patch
|
ehsan.akhgari
:
review+
|
Details | Diff | Splinter Review |
501 void
502 nsHTMLEditor::AddPositioningOffset(PRInt32 & aX, PRInt32 & aY)
503 {
504 // Get the positioning offset
505 nsresult res;
506 PRInt32 positioningOffset =
507 Preferences::GetInt("editor.positioning.offset", 0);
508
509 aX += positioningOffset;
510 aY += positioningOffset;
511 }
Assignee | ||
Updated•13 years ago
|
Blocks: buildwarning
Assignee | ||
Comment 1•13 years ago
|
||
Was made unused by bug 664437, here: http://hg.mozilla.org/mozilla-central/diff/f81579f78f92/editor/libeditor/html/nsHTMLAbsPosition.cpp
Attachment #540334 -
Flags: review?(ehsan)
Assignee | ||
Comment 2•13 years ago
|
||
Updated•13 years ago
|
Attachment #540334 -
Flags: review?(ehsan) → review+
Assignee | ||
Updated•13 years ago
|
Keywords: checkin-needed
Comment 3•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Keywords: checkin-needed
Resolution: --- → FIXED
Target Milestone: --- → mozilla7
Comment 4•13 years ago
|
||
The nsresult res variable has been removed from nsHTMLAbsPosition.cpp - visible when opening the .cpp file or the link in the above comment.
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•