Fix missing parentheses in expression. Bug 594278, r=jimm, a=dbaron

This commit is contained in:
Simon Montagu 2010-09-20 11:40:41 +02:00
parent 317aff786d
commit f2f4148eef

View File

@ -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,