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/basicctrls_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/basicctrls_windows.c')
| -rw-r--r-- | redo/basicctrls_windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/basicctrls_windows.c b/redo/basicctrls_windows.c index 8974bdb..58474c1 100644 --- a/redo/basicctrls_windows.c +++ b/redo/basicctrls_windows.c @@ -3,7 +3,7 @@ #include "winapi_windows.h" #include "_cgo_export.h" -HWND newWidget(LPCWSTR class, DWORD style, DWORD extstyle) +HWND newWidget(LPWSTR class, DWORD style, DWORD extstyle) { HWND hwnd; |
