summaryrefslogtreecommitdiff
path: root/ui/switch_to_gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/switch_to_gui.cpp')
-rw-r--r--ui/switch_to_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/switch_to_gui.cpp b/ui/switch_to_gui.cpp
index 7bd28c59..76e5b282 100644
--- a/ui/switch_to_gui.cpp
+++ b/ui/switch_to_gui.cpp
@@ -20,8 +20,8 @@ void SwitchToGui::execute() const //throw()
{
try
{
- MainDialog* frame = new MainDialog(guiCfg, globalSettings_, true);
+ MainDialog* frame = new MainDialog(guiCfg, globalSettings_, true); //toplevel window
frame->Show();
}
- catch(...) {}
+ catch (...) {}
}
bgstack15