diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-01 18:25:59 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-01 18:25:59 -0400 |
| commit | 80828b8a7d2273d5f35b7114c8dfc10605fc5df8 (patch) | |
| tree | d7897af6491bcbe1b0f1ede039220e936e5fe740 /redo/window_windows.c | |
| parent | 7f027bae3c34afb1261ef60aa3754676f0fa648a (diff) | |
Changed LPCWSTR to LPWSTR in the Windows code as the C means const and there are a few cases of const->non-const conversions as a result.
Diffstat (limited to 'redo/window_windows.c')
| -rw-r--r-- | redo/window_windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/window_windows.c b/redo/window_windows.c index e848a89..9cf0654 100644 --- a/redo/window_windows.c +++ b/redo/window_windows.c @@ -60,7 +60,7 @@ DWORD makeWindowWindowClass(char **errmsg) return 0; } -HWND newWindow(LPCWSTR title, int width, int height, void *data) +HWND newWindow(LPWSTR title, int width, int height, void *data) { HWND hwnd; |
