From f2f4148eef1d8bef7ac43529f9ac64e23dddfc9d Mon Sep 17 00:00:00 2001 From: Simon Montagu Date: Mon, 20 Sep 2010 11:40:41 +0200 Subject: [PATCH] Fix missing parentheses in expression. Bug 594278, r=jimm, a=dbaron --- widget/src/windows/nsWindow.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/widget/src/windows/nsWindow.cpp b/widget/src/windows/nsWindow.cpp index ebd768c461a..22fa918681a 100644 --- a/widget/src/windows/nsWindow.cpp +++ b/widget/src/windows/nsWindow.cpp @@ -2808,8 +2808,7 @@ void* nsWindow::GetNativeData(PRUint32 aDataType) { switch (aDataType) { case NS_NATIVE_TMP_WINDOW: - return (void*)::CreateWindowExW(WS_EX_NOACTIVATE | - mIsRTL ? WS_EX_LAYOUTRTL : 0, + return (void*)::CreateWindowExW(mIsRTL ? WS_EX_LAYOUTRTL : 0, WindowClass(), L"", WS_CHILD,