Closed
Bug 1216
Opened 26 years ago
Closed 26 years ago
Fix for layout/events/src/nsDOMEvent.h
Categories
(Core :: Layout, defect, P2)
Tracking
()
VERIFIED
FIXED
People
(Reporter: tor, Assigned: joki)
Details
Compiler doesn't like a trailing comma in an enum declaration.
--- nsDOMEvent.h-orig Fri Oct 30 15:13:21 1998
+++ nsDOMEvent.h Fri Oct 30 15:13:35 1998
@@ -58,7 +58,7 @@
eDOMEvents_error,
eDOMEvents_submit,
eDOMEvents_reset,
- eDOMEvents_paint,
+ eDOMEvents_paint
};
nsDOMEvent(nsIPresContext* aPresContext, nsEvent* aEvent);
Updated•26 years ago
|
Assignee: vidur → joki
Comment 1•26 years ago
|
||
Tom, if this is one of your generated file, let me know and I'll fix the
generation code.
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 2•26 years ago
|
||
Got it, looks like a goof from adding the paint event.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 3•26 years ago
|
||
marking bug verified per 12/11 build...
You need to log in
before you can comment on or make changes to this bug.
Description
•