Fixed bug in Windows uiWindowOnClosing() handler.
This commit is contained in:
parent
d215ee147f
commit
14de9f3cad
|
@ -50,7 +50,7 @@ static LRESULT CALLBACK windowWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARA
|
||||||
logLastError("error resizing uiWindow box in windowWndProc()");
|
logLastError("error resizing uiWindow box in windowWndProc()");
|
||||||
return 0;
|
return 0;
|
||||||
case WM_CLOSE:
|
case WM_CLOSE:
|
||||||
if (!(*(w->onClosing))(uiWindow(w), w->onClosingData))
|
if ((*(w->onClosing))(uiWindow(w), w->onClosingData))
|
||||||
uiControlDestroy(uiControl(w));
|
uiControlDestroy(uiControl(w));
|
||||||
return 0; // we destroyed it already
|
return 0; // we destroyed it already
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue