Closed
Bug 14606
Opened 25 years ago
Closed 25 years ago
logic error in nsEventListenerManager.cpp
Categories
(Core :: Layout, defect, P3)
Core
Layout
Tracking
()
VERIFIED
FIXED
People
(Reporter: colin, Assigned: joki)
Details
In layout/events/src/nsEventListenerManager.cpp is the following
code snippet:
switch(aEvent->message) {
case NS_MENU_CREATE:
if (ls->mSubType & NS_EVENT_BITS_MENU_CREATE) {
correctSubType = PR_TRUE;
}
My compiler grumbles because the statement "correctSubType = PR_TRUE" can
never be executed (because NS_EVENT_BITS_MENU_CREATE is zero).
Something is wrong here!!
Colin.
Assignee | ||
Comment 1•25 years ago
|
||
I checked this is with some fixes a little while back.
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 2•25 years ago
|
||
Based on Tom's comments, marking this as verified fixed in the Nov 15th build.
You need to log in
before you can comment on or make changes to this bug.
Description
•