mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Fix missing parentheses in expression. Bug 594278, r=jimm, a=dbaron
This commit is contained in:
parent
317aff786d
commit
f2f4148eef
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user