summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view_item.h
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2005-09-25 20:33:00 +0000
committerTaybin Rutkin <taybin@taybin.com>2005-09-25 20:33:00 +0000
commite493b2b7c4fbbbfc457f02babf9546289b430177 (patch)
tree598b5fa6dc9340c96961e3131cc994480d80ff6a /gtk2_ardour/time_axis_view_item.h
parentf872433e8e81ba5a3a9ebffa32c6ddd9e3358f07 (diff)
Fly my pretties!
git-svn-id: svn://localhost/trunk/ardour2@28 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/time_axis_view_item.h')
-rw-r--r--gtk2_ardour/time_axis_view_item.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/gtk2_ardour/time_axis_view_item.h b/gtk2_ardour/time_axis_view_item.h
index a1eff29c4b..27f7a8de91 100644
--- a/gtk2_ardour/time_axis_view_item.h
+++ b/gtk2_ardour/time_axis_view_item.h
@@ -21,7 +21,7 @@
#ifndef __gtk_ardour_time_axis_view_item_h__
#define __gtk_ardour_time_axis_view_item_h__
-#include <sigc++/signal_system.h>
+#include <sigc++/signal.h>
#include <gtk-canvas.h>
#include <jack/jack.h>
#include <string>
@@ -34,7 +34,7 @@ class TimeAxisView;
* A base class for 'items' that may appear upon a TimeAxisView
*
*/
-class TimeAxisViewItem : public SigC::Object, public Selectable
+class TimeAxisViewItem : public sigc::trackable, public Selectable
{
public:
virtual ~TimeAxisViewItem() ;
@@ -290,28 +290,28 @@ class TimeAxisViewItem : public SigC::Object, public Selectable
* the destructor, this allows us to capture the source of the deletion
* event
*/
- SigC::Signal2<void,std::string,void*> ItemRemoved ;
+ sigc::signal<void,std::string,void*> ItemRemoved ;
/** Emitted when the name/Id of this item is changed */
- SigC::Signal3<void,std::string,std::string,void*> NameChanged ;
+ sigc::signal<void,std::string,std::string,void*> NameChanged ;
/** Emiited when the position of this item changes */
- SigC::Signal2<void,jack_nframes_t,void*> PositionChanged ;
+ sigc::signal<void,jack_nframes_t,void*> PositionChanged ;
/** Emitted when the position lock of this item is changed */
- SigC::Signal2<void,bool,void*> PositionLockChanged ;
+ sigc::signal<void,bool,void*> PositionLockChanged ;
/** Emitted when the duration of this item changes */
- SigC::Signal2<void,jack_nframes_t,void*> DurationChanged ;
+ sigc::signal<void,jack_nframes_t,void*> DurationChanged ;
/** Emitted when the maximum item duration is changed */
- SigC::Signal2<void,jack_nframes_t,void*> MaxDurationChanged ;
+ sigc::signal<void,jack_nframes_t,void*> MaxDurationChanged ;
/** Emitted when the mionimum item duration is changed */
- SigC::Signal2<void,jack_nframes_t,void*> MinDurationChanged ;
+ sigc::signal<void,jack_nframes_t,void*> MinDurationChanged ;
/** Emitted when the selected status of this item changes */
- SigC::Signal1<void, bool> Selected ;
+ sigc::signal<void, bool> Selected ;
protected: