diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/UpdateGUI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/UpdateGUI.cpp b/src/UpdateGUI.cpp index 8547719..ff6697e 100644 --- a/src/UpdateGUI.cpp +++ b/src/UpdateGUI.cpp @@ -156,7 +156,7 @@ void UpdateGUIFrame::OnClose(wxCloseEvent& event) wxYES_NO | wxCENTRE | wxICON_QUESTION); dlg.SetYesNoLabels("&Quit", "&Don't quit"); switch (dlg.ShowModal()) { - case wxID_YES: break; + case wxID_YES: Destroy(); return; case wxID_NO: default: dlg.Destroy(); return; } |