summaryrefslogtreecommitdiff
path: root/gtk2_ardour/add_route_dialog.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-09-18 14:45:56 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2017-09-18 14:59:11 -0400
commitea5fa64c0bcfb6a916326756b5f84a78a2478025 (patch)
tree8efeb2699db85570a8dbf8935148c5cb9413f1f6 /gtk2_ardour/add_route_dialog.cc
parentd381714510ef066416ea16623102b27de8aa6f38 (diff)
manually fix up various cases where Gtk:Frame foo_frame had been changed to foo_sample
Diffstat (limited to 'gtk2_ardour/add_route_dialog.cc')
-rw-r--r--gtk2_ardour/add_route_dialog.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk2_ardour/add_route_dialog.cc b/gtk2_ardour/add_route_dialog.cc
index 61f23d54e9..53ec867b6e 100644
--- a/gtk2_ardour/add_route_dialog.cc
+++ b/gtk2_ardour/add_route_dialog.cc
@@ -205,11 +205,11 @@ You may select:\n \
desc_scroller->add (trk_template_desc);
//this is the outer sample that surrounds the description and the settings-table
- trk_template_outer_sample.set_name (X_("TextHighlightFrame"));
+ trk_template_outer_frame.set_name (X_("TextHighlightFrame"));
//this is the "inner frame" that surrounds the description text
- trk_template_desc_sample.set_name (X_("TextHighlightFrame"));
- trk_template_desc_sample.add (*desc_scroller);
+ trk_template_desc_frame.set_name (X_("TextHighlightFrame"));
+ trk_template_desc_frame.add (*desc_scroller);
/* template_chooser is the treeview showing available templates */
trk_template_model = TreeStore::create (track_template_columns);
@@ -238,14 +238,14 @@ You may select:\n \
settings_table->set_border_width (12);
VBox* settings_vbox = manage (new VBox);
- settings_vbox->pack_start(trk_template_desc_sample , true, true);
+ settings_vbox->pack_start(trk_template_desc_frame , true, true);
settings_vbox->pack_start(*settings_table , true, true);
settings_vbox->set_border_width (4);
- trk_template_outer_sample.add (*settings_vbox);
+ trk_template_outer_frame.add (*settings_vbox);
template_hbox->pack_start (*template_scroller, true, true);
- template_hbox->pack_start (trk_template_outer_sample, true, true);
+ template_hbox->pack_start (trk_template_outer_frame, true, true);
vbox->pack_start (*template_hbox, true, true);