Closed
Bug 39726
Opened 24 years ago
Closed 24 years ago
Type in editor/base/IMETextTxn.cpp?
Categories
(Core :: DOM: Editor, defect, P3)
Tracking
()
VERIFIED
FIXED
M17
People
(Reporter: Joerg.Brunsmann, Assigned: shanjian)
References
()
Details
Shouldn't
if (otherTxn && NS_SUCCEEDED(NS_OK))
look like
if (otherTxn && NS_SUCCEEDED(result))
or
if (otherTxn)
??
Comment 1•24 years ago
|
||
Comment 2•24 years ago
|
||
assigning to ftang for confirmation on suggested change -- Frank, see line 167
in the file
Assignee: beppe → ftang
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 3•24 years ago
|
||
good catch ! shanjian, can you handl this ?
Assignee: ftang → shanjian
Target Milestone: --- → M17
Assignee | ||
Updated•24 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 4•24 years ago
|
||
I change the code and try it on my machine, it is correct.
I will checked it in when tree is open.
Assignee | ||
Comment 5•24 years ago
|
||
Index: IMETextTxn.cpp
===================================================================
RCS file: /cvsroot/mozilla/editor/base/IMETextTxn.cpp,v
retrieving revision 1.20
diff -r1.20 IMETextTxn.cpp
167c167
< if (otherTxn && NS_SUCCEEDED(NS_OK))
---
> if (otherTxn && NS_SUCCEEDED(result))
Assignee | ||
Comment 6•24 years ago
|
||
fix checked in.
Status: ASSIGNED → RESOLVED
Closed: 24 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•