summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui2.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/ardour_ui2.cc
parentd381714510ef066416ea16623102b27de8aa6f38 (diff)
manually fix up various cases where Gtk:Frame foo_frame had been changed to foo_sample
Diffstat (limited to 'gtk2_ardour/ardour_ui2.cc')
-rw-r--r--gtk2_ardour/ardour_ui2.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/ardour_ui2.cc b/gtk2_ardour/ardour_ui2.cc
index 07e835e62f..4f4bf9dac4 100644
--- a/gtk2_ardour/ardour_ui2.cc
+++ b/gtk2_ardour/ardour_ui2.cc
@@ -456,8 +456,8 @@ ARDOUR_UI::setup_transport ()
transport_table.set_row_spacings (4);
transport_table.set_border_width (2);
- transport_sample.set_name ("TransportFrame");
- transport_sample.set_shadow_type (Gtk::SHADOW_NONE);
+ transport_frame.set_name ("TransportFrame");
+ transport_frame.set_shadow_type (Gtk::SHADOW_NONE);
/* An event box to hold the table. We use this because we want specific
control over the background color, and without this event box,
@@ -468,7 +468,7 @@ ARDOUR_UI::setup_transport ()
the parent, "TransportFrame".
*/
Gtk::EventBox* ebox = manage (new Gtk::EventBox);
- transport_sample.add (*ebox);
+ transport_frame.add (*ebox);
ebox->add (transport_table);
/* transport controls sub-group */