the ongoing story of umpteen lines of code and its love affair with GTK2
[ardour.git] / gtk2_ardour / automation_gain_line.cc
index 8331d983d7bccf49c17da2f27115f46fb1a59d36..65fc7b2cba118962bb407df4ff787c4afaf84c73 100644 (file)
@@ -18,7 +18,7 @@
     $Id$
 */
 
-#include <sigc++/signal_system.h>
+#include <sigc++/signal.h>
 
 #include <ardour/curve.h>
 #include <pbd/fastlog.h>
 using namespace std;
 using namespace ARDOUR;
 
-AutomationGainLine::AutomationGainLine (string name, Session& s, TimeAxisView& tv, GtkCanvasItem* parent,
+AutomationGainLine::AutomationGainLine (string name, Session& s, TimeAxisView& tv, GnomeCanvasItem* parent,
                                        Curve& c, 
-                                       gint (*point_callback)(GtkCanvasItem*, GdkEvent*, gpointer),
-                                       gint (*line_callback)(GtkCanvasItem*, GdkEvent*, gpointer))
+                                       gint (*point_callback)(GnomeCanvasItem*, GdkEvent*, gpointer),
+                                       gint (*line_callback)(GnomeCanvasItem*, GdkEvent*, gpointer))
        : AutomationLine (name, tv, parent, c, point_callback, line_callback),
          session (s)
 {