summaryrefslogtreecommitdiff
path: root/gtk2_ardour/session_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/session_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/session_dialog.cc')
-rw-r--r--gtk2_ardour/session_dialog.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk2_ardour/session_dialog.cc b/gtk2_ardour/session_dialog.cc
index 0164366f74..8ad6e2d388 100644
--- a/gtk2_ardour/session_dialog.cc
+++ b/gtk2_ardour/session_dialog.cc
@@ -99,10 +99,10 @@ SessionDialog::SessionDialog (bool require_new, const std::string& session_name,
* and invisible most of the time.
*/
- info_sample.set_shadow_type(SHADOW_ETCHED_OUT);
- info_sample.set_no_show_all (true);
- info_sample.set_border_width (12);
- get_vbox()->pack_start (info_sample, false, false);
+ info_frame.set_shadow_type(SHADOW_ETCHED_OUT);
+ info_frame.set_no_show_all (true);
+ info_frame.set_border_width (12);
+ get_vbox()->pack_start (info_frame, false, false);
setup_new_session_page ();
@@ -453,9 +453,9 @@ SessionDialog::setup_initial_choice_box ()
info_box->pack_start (*updates_button, false, false);
- info_sample.add (*info_box);
+ info_frame.add (*info_box);
info_box->show_all ();
- info_sample.show ();
+ info_frame.show ();
}
/* recent session scroller */
@@ -698,9 +698,9 @@ SessionDialog::setup_new_session_page ()
template_hbox->pack_start (*template_scroller, true, true);
- template_desc_sample.set_name (X_("TextHighlightFrame"));
- template_desc_sample.add (*desc_scroller);
- template_hbox->pack_start (template_desc_sample, true, true);
+ template_desc_frame.set_name (X_("TextHighlightFrame"));
+ template_desc_frame.add (*desc_scroller);
+ template_hbox->pack_start (template_desc_frame, true, true);
}
//template_desc is the textview that displays the currently selected template's description