[UI] Shuffle some exit handling code around

This commit is contained in:
DrChat
2017-12-17 12:37:58 -06:00
parent 39b5d8ba42
commit 8ec8d9778f
3 changed files with 3 additions and 8 deletions

View File

@@ -169,7 +169,6 @@ void Win32Window::OnDestroy() { super::OnDestroy(); }
void Win32Window::OnClose() {
if (!closing_ && hwnd_) {
closing_ = true;
CloseWindow(hwnd_);
}
super::OnClose();
}
@@ -428,7 +427,6 @@ void Win32Window::Close() {
return;
}
closing_ = true;
Close();
OnClose();
DestroyWindow(hwnd_);
}
@@ -509,8 +507,6 @@ LRESULT Win32Window::WndProc(HWND hWnd, UINT message, WPARAM wParam,
OnDestroy();
break;
case WM_CLOSE:
closing_ = true;
Close();
OnClose();
break;