Closed
Bug 211432
Opened 22 years ago
Closed 22 years ago
Building without XUL is busted.
Categories
(Core :: XUL, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: dougt, Assigned: dougt)
Details
Attachments
(1 file)
2.50 KB,
patch
|
blizzard
:
review+
|
Details | Diff | Splinter Review |
Apparently, ApplyTransparencyBitmap is declared and used outside of the MOZ_XUL
#define, but is defined in a MOZ_XUL #define.
Patch forthcoming.
Assignee | ||
Comment 1•22 years ago
|
||
Assignee | ||
Updated•22 years ago
|
Attachment #126913 -
Flags: review?(blizzard)
Comment 2•22 years ago
|
||
Comment on attachment 126913 [details] [diff] [review]
moves ApplyTransparencyBitmap
r+sr=blizzard
Attachment #126913 -
Flags: review?(blizzard) → review+
![]() |
||
Comment 3•22 years ago
|
||
Shouldn't the body of that method still be inside #ifdef MOZ_XUL?
I think it would be best to just add an empty prototype for #ifndef MOZ_XUL
alongside the one for ResizeTransparencyBitmap, here:
http://lxr.mozilla.org/seamonkey/source/widget/src/gtk/nsWindow.cpp#4278
That's what I should have done, sorry.
Assignee | ||
Comment 5•22 years ago
|
||
Even smaller.
Index: nsWindow.cpp
===================================================================
RCS file: /cvsroot/mozilla/widget/src/gtk/nsWindow.cpp,v
retrieving revision 1.405
diff -u -r1.405 nsWindow.cpp
--- nsWindow.cpp 11 Jun 2003 18:15:33 -0000 1.405
+++ nsWindow.cpp 2 Jul 2003 20:53:50 -0000
@@ -4275,6 +4275,7 @@
}
#ifndef MOZ_XUL
+void nsWindow::ApplyTransparencyBitmap() {}
void nsWindow::ResizeTransparencyBitmap(PRInt32 aNewWidth, PRInt32 aNewHeight) {
}
#else
Assignee | ||
Comment 6•22 years ago
|
||
Checking in widget/src/gtk/nsWindow.cpp;
/cvsroot/mozilla/widget/src/gtk/nsWindow.cpp,v <-- nsWindow.cpp
new revision: 1.406; previous revision: 1.405
done
roc's proposed fix checked in.
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•