summaryrefslogtreecommitdiff
path: root/gtk2_ardour/automation_line.cc
diff options
context:
space:
mode:
authorNick Mainsbridge <beatroute@iprimus.com.au>2005-11-23 17:21:12 +0000
committerNick Mainsbridge <beatroute@iprimus.com.au>2005-11-23 17:21:12 +0000
commit54a80321064aa543023cd0b224ba9d433520983f (patch)
treef865a7fe2269054f4215e3bbaa477cd9f091e813 /gtk2_ardour/automation_line.cc
parentfb45ffea71d345ced0cfbb12b9dcd89ecb1e8dbf (diff)
Gnome::Canvas -> ArdourCanvas and some other small fixes
git-svn-id: svn://localhost/trunk/ardour2@107 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/automation_line.cc')
-rw-r--r--gtk2_ardour/automation_line.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/automation_line.cc b/gtk2_ardour/automation_line.cc
index da208489f4..f168a9f9f0 100644
--- a/gtk2_ardour/automation_line.cc
+++ b/gtk2_ardour/automation_line.cc
@@ -217,7 +217,7 @@ ControlPoint::move_to (double x, double y, ShapeType shape)
/*****/
-AutomationLine::AutomationLine (string name, TimeAxisView& tv, Gnome::Canvas::Group& parent, AutomationList& al)
+AutomationLine::AutomationLine (string name, TimeAxisView& tv, ArdourCanvas::Group& parent, AutomationList& al)
: trackview (tv),
_name (name),
alist (al),
@@ -231,11 +231,11 @@ AutomationLine::AutomationLine (string name, TimeAxisView& tv, Gnome::Canvas::Gr
terminal_points_can_slide = true;
_height = 0;
- group = new Gnome::Canvas::Group (parent);
+ group = new ArdourCanvas::Group (parent);
group->set_property ("x", 0.0);
group->set_property ("y", 0.0);
- line = new Gnome::Canvas::Line (*group);
+ line = new ArdourCanvas::Line (*group);
line->set_property ("width_pixels", (guint)1);
line->signal_event().connect (mem_fun (*this, &AutomationLine::event_handler));