mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
lpszName of NULL is handled (removes some warnings).
This commit is contained in:
parent
0e62bbac28
commit
4ef4d6d5ea
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ LRESULT WINAPI StaticWndProc( HWND32 hWnd, UINT32 uMsg, WPARAM32 wParam,
|
||||||
wndPtr->dwStyle);
|
wndPtr->dwStyle);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (!HIWORD(cs->lpszName)) {
|
if (!HIWORD(cs->lpszName) && (cs->lpszName)) {
|
||||||
FIXME(static,"windowName is 0x%04x, not doing DefWindowProc\n",
|
FIXME(static,"windowName is 0x%04x, not doing DefWindowProc\n",
|
||||||
LOWORD(cs->lpszName)
|
LOWORD(cs->lpszName)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue