summaryrefslogtreecommitdiffstats
path: root/src/libs/gui/App.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/gui/App.cpp')
-rw-r--r--src/libs/gui/App.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libs/gui/App.cpp b/src/libs/gui/App.cpp
index 3ee95540..46737d01 100644
--- a/src/libs/gui/App.cpp
+++ b/src/libs/gui/App.cpp
@@ -96,6 +96,7 @@ App::App(Ingen::Shared::World* world)
glade_xml->get_widget_derived("messages_win", _messages_window);
glade_xml->get_widget_derived("patch_tree_win", _patch_tree_window);
glade_xml->get_widget("about_win", _about_dialog);
+ _about_dialog->property_program_name() = "Ingen";
Redland::World& rdf_world = *world->rdf_world;
@@ -349,6 +350,14 @@ App::gtk_main_iteration()
void
+App::show_about()
+{
+ _about_dialog->run();
+ _about_dialog->hide();
+}
+
+
+void
App::quit()
{
Gtk::Main::quit();