Closed
Bug 9609
Opened 26 years ago
Closed 26 years ago
gtk_widget_draw call with wrong type
Categories
(Core :: XUL, defect, P3)
Tracking
()
VERIFIED
FIXED
M9
People
(Reporter: km, Assigned: pavlov)
Details
In mozilla/widget/src/gtk/nsWindow.cpp
793: gtk_widget_draw(mShell, NULL);
795: gtk_widget_draw(mWidget, NULL);
have type errors in the second argument. This is treated as an
error (not warning) with the Sun Workshop compilers.
Suggest:
793: gtk_widget_draw(mShell, (GdkRectangle *) NULL);
795: gtk_widget_draw(mWidget, (GdkRectangle *)NULL);
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Target Milestone: M9
Assignee | ||
Comment 1•26 years ago
|
||
mcafee fixed this
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 3•26 years ago
|
||
verified.
You need to log in
before you can comment on or make changes to this bug.
Description
•