We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08c6d59 commit af046f9Copy full SHA for af046f9
1 file changed
src/ruisapp/glue/windows/display.cxx
@@ -391,7 +391,7 @@ display_wrapper::window_class_wrapper::window_class_wrapper(
391
WNDCLASSA wc;
392
393
wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC; // redraw on resize, own DC for window
394
- wc.lpfnWndProc = &window_procedure;
+ wc.lpfnWndProc = window_procedure;
395
wc.cbClsExtra = 0; // no extra window data
396
wc.cbWndExtra = 0; // no extra window data
397
wc.hInstance = GetModuleHandle(nullptr); // instance handle
0 commit comments