summaryrefslogtreecommitdiff
path: root/gtk2_ardour/location_ui.cc
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2005-10-22 17:33:14 +0000
committerTaybin Rutkin <taybin@taybin.com>2005-10-22 17:33:14 +0000
commite0946701e10074f51dca50191fed201f1b922477 (patch)
tree1e5279f5ebd085386e97f4153e29ccad78116178 /gtk2_ardour/location_ui.cc
parent50f41b7bd3562aa416ebaa0d19816bac955e19d9 (diff)
More compliation fixes. add_with_viewport() -> add(). track_gnome_canvas -> track_canvas. etc.
git-svn-id: svn://localhost/trunk/ardour2@66 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/location_ui.cc')
-rw-r--r--gtk2_ardour/location_ui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/location_ui.cc b/gtk2_ardour/location_ui.cc
index 3e5275aeb0..a6957a9017 100644
--- a/gtk2_ardour/location_ui.cc
+++ b/gtk2_ardour/location_ui.cc
@@ -611,7 +611,7 @@ LocationUI::LocationUI ()
location_vpacker.pack_start (punch_edit_row, false, false);
location_rows.set_name("LocationLocRows");
- location_rows_scroller.add_with_viewport (location_rows);
+ location_rows_scroller.add (location_rows);
location_rows_scroller.set_name ("LocationLocRowsScroller");
location_rows_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
location_rows_scroller.set_size_request (-1, 130);
@@ -632,7 +632,7 @@ LocationUI::LocationUI ()
range_rows.set_name("LocationRangeRows");
- range_rows_scroller.add_with_viewport (range_rows);
+ range_rows_scroller.add (range_rows);
range_rows_scroller.set_name ("LocationRangeRowsScroller");
range_rows_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
range_rows_scroller.set_size_request (-1, 130);