commit | 4ef4d6d5ea6d6d41b13b30203963f937cf12c1ab | [log] [tgz] |
---|---|---|
author | Marcus Meissner <marcus@jet.franken.de> | Sat Oct 31 12:07:51 1998 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Sat Oct 31 12:07:51 1998 +0000 |
tree | ad612113e071e0debfc8455588be09e506b49dae | |
parent | 0e62bbac28aaa6cbeb669d86782b7f2361bfca29 [diff] |
lpszName of NULL is handled (removes some warnings).
diff --git a/controls/static.c b/controls/static.c index 4b9cb75..56a71367 100644 --- a/controls/static.c +++ b/controls/static.c
@@ -196,7 +196,7 @@ wndPtr->dwStyle); return 1; } - if (!HIWORD(cs->lpszName)) { + if (!HIWORD(cs->lpszName) && (cs->lpszName)) { FIXME(static,"windowName is 0x%04x, not doing DefWindowProc\n", LOWORD(cs->lpszName) );