Large nasty commit in the form of a 5000 line patch chock-full of completely
[ardour.git] / gtk2_ardour / automation_pan_line.cc
index 516795dff7ca94e82559dea3c728c295fa9389f7..aacfbdde75972ac92cc8bf338bae87538019c900 100644 (file)
@@ -22,6 +22,7 @@
 
 #include <ardour/curve.h>
 
+#include "canvas_impl.h"
 #include "public_editor.h"
 #include "automation_pan_line.h"
 #include "utils.h"
 #include <ardour/session.h>
 
 using namespace ARDOUR;
+using namespace PBD;
 
-AutomationPanLine::AutomationPanLine (string name, Session& s, TimeAxisView& tv, Gnome::Canvas::Group& parent,
-                                     Curve& c, 
-                                     sigc::slot<bool,GdkEvent*,ControlPoint*> point_handler,
-                                     sigc::slot<bool,GdkEvent*,AutomationLine*> line_handler)
+AutomationPanLine::AutomationPanLine (const string & name, Session& s, TimeAxisView& tv, ArdourCanvas::Group& parent, Curve& c)
 
-       : AutomationLine (name, tv, parent, c, point_handler, line_handler),
+       : AutomationLine (name, tv, parent, c),
          session (s)
 {
 }