summaryrefslogtreecommitdiffstats
path: root/src/Patchage.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-04-06 16:08:11 +0000
committerDavid Robillard <d@drobilla.net>2014-04-06 16:08:11 +0000
commit9e31195fec9fb11b03891f1c5bbc243e82da4d30 (patch)
treef308c7cc77f45f1e58cca57c7ca6d3b1cb75b0bc /src/Patchage.cpp
parentd1678ff80fe301569215904fcd886f257136b062 (diff)
downloadpatchage-9e31195fec9fb11b03891f1c5bbc243e82da4d30.tar.gz
patchage-9e31195fec9fb11b03891f1c5bbc243e82da4d30.tar.bz2
patchage-9e31195fec9fb11b03891f1c5bbc243e82da4d30.zip
Rename "Draw" to "Export DOT".
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@5358 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/Patchage.cpp')
-rw-r--r--src/Patchage.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Patchage.cpp b/src/Patchage.cpp
index fc1c31e..6c47eb8 100644
--- a/src/Patchage.cpp
+++ b/src/Patchage.cpp
@@ -92,7 +92,7 @@ Patchage::Patchage(int argc, char** argv)
, INIT_WIDGET(_menu_alsa_connect)
, INIT_WIDGET(_menu_alsa_disconnect)
, INIT_WIDGET(_menu_file_quit)
- , INIT_WIDGET(_menu_draw)
+ , INIT_WIDGET(_menu_export_dot)
, INIT_WIDGET(_menu_help_about)
, INIT_WIDGET(_menu_jack_connect)
, INIT_WIDGET(_menu_jack_disconnect)
@@ -187,8 +187,8 @@ Patchage::Patchage(int argc, char** argv)
_menu_file_quit->signal_activate().connect(
sigc::mem_fun(this, &Patchage::on_quit));
- _menu_draw->signal_activate().connect(
- sigc::mem_fun(this, &Patchage::on_draw));
+ _menu_export_dot->signal_activate().connect(
+ sigc::mem_fun(this, &Patchage::on_export_dot));
_menu_view_refresh->signal_activate().connect(
sigc::mem_fun(this, &Patchage::refresh));
_menu_view_human_names->signal_activate().connect(
@@ -798,9 +798,9 @@ Patchage::on_quit()
}
void
-Patchage::on_draw()
+Patchage::on_export_dot()
{
- Gtk::FileChooserDialog dialog("Draw to DOT", Gtk::FILE_CHOOSER_ACTION_SAVE);
+ Gtk::FileChooserDialog dialog("Export to DOT", Gtk::FILE_CHOOSER_ACTION_SAVE);
dialog.set_transient_for(*_main_win);
dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);