diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-11-21 15:39:30 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-11-21 15:39:30 +0100 |
commit | 147cc6b685384d95515205b9e2ac1400c27e3d4f (patch) | |
tree | 2b3d66120d68f474b18861eb38e44158b80b8c4f /plugingui/nativewindow_win32.cc | |
parent | 2a7259164b887dec945d1cdf98737853152b79cf (diff) |
Fix includes.
Diffstat (limited to 'plugingui/nativewindow_win32.cc')
-rw-r--r-- | plugingui/nativewindow_win32.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/nativewindow_win32.cc b/plugingui/nativewindow_win32.cc index e9f37a7..cce5a49 100644 --- a/plugingui/nativewindow_win32.cc +++ b/plugingui/nativewindow_win32.cc @@ -312,7 +312,7 @@ NativeWindowWin32::NativeWindowWin32(Window& window) wcex.hbrBackground = nullptr;//(HBRUSH) COLOR_BACKGROUND + 1; // } - wcex.lpszClassName = m_className = strdup("DrumGizmoClass"); + wcex.lpszClassName = m_className = (char*)"DrumGizmoClass"; RegisterClassEx(&wcex); |