diff options
| author | Pietro Gagliardi <[email protected]> | 2014-07-18 00:22:21 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-07-18 00:22:21 -0400 |
| commit | d2f09a02225281fbd30fe068f228ca0f3fd26471 (patch) | |
| tree | fe0148572c6336dd74b2113b3a4fcdc34b3fe4ae /redo/controls_windows.c | |
| parent | 7c6fa3b2fd773a31d4c0f8899b96c1f25a669ec1 (diff) | |
Fixed all the remaining compiler errors. C conversion works!
Diffstat (limited to 'redo/controls_windows.c')
| -rw-r--r-- | redo/controls_windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/controls_windows.c b/redo/controls_windows.c index dadce75..77cf758 100644 --- a/redo/controls_windows.c +++ b/redo/controls_windows.c @@ -19,7 +19,7 @@ HWND newWidget(LPCWSTR class, DWORD style, DWORD extstyle) also don't use low control IDs as they will conflict with dialog boxes (IDCANCEL, etc.) */ msgwin, (HMENU) 100, hInstance, NULL); - if (hwnd == NULL) { + if (hwnd == NULL) xpanic("error creating control", GetLastError()); return hwnd; } |
