From 768fb4337097416aed7cea209dd19f63559f3cb4 Mon Sep 17 00:00:00 2001 From: Robert O'Callahan Date: Tue, 25 Aug 2009 13:13:23 -0700 Subject: [PATCH] Fix bustage --HG-- extra : rebase_source : 9e76df4981946fac173074b2cc39ec05f4be6866 --- widget/src/windows/nsWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widget/src/windows/nsWindow.cpp b/widget/src/windows/nsWindow.cpp index 481b8fb8f279..bdb587899fcd 100644 --- a/widget/src/windows/nsWindow.cpp +++ b/widget/src/windows/nsWindow.cpp @@ -644,7 +644,7 @@ nsWindow::StandardWindowCreate(nsIWidget *aParent, parent = NULL; } else if (mWindowType == eWindowType_invisible) { // Make sure CreateWindowEx succeeds at creating a toplevel window - style &= ~WS_CHILDWINDOW; + style &= ~0x40000000; // WS_CHILDWINDOW } else if (nsnull != aInitData) { // See if the caller wants to explictly set clip children and clip siblings if (aInitData->clipChildren) {