summaryrefslogtreecommitdiff
path: root/gtk2_ardour/visual_time_axis.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/visual_time_axis.h')
-rw-r--r--gtk2_ardour/visual_time_axis.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk2_ardour/visual_time_axis.h b/gtk2_ardour/visual_time_axis.h
index 1442b011aa..6e3629ea06 100644
--- a/gtk2_ardour/visual_time_axis.h
+++ b/gtk2_ardour/visual_time_axis.h
@@ -85,7 +85,7 @@ class VisualTimeAxis : public TimeAxisView
* @param name the new name of this TimeAxis
* @param src the identity of the object that initiated the change
*/
- virtual void set_time_axis_name(ARDOUR::stringcr_t name, void* src) ;
+ virtual void set_time_axis_name(const string & name, void* src) ;
//---------------------------------------------------------------------------------------//
@@ -114,7 +114,7 @@ class VisualTimeAxis : public TimeAxisView
/**
* Emitted when we have changed the gui, and what we have shanged
*/
- sigc::signal<void,ARDOUR::stringcr_t,void*> gui_changed ;
+ sigc::signal<void,const string &,void*> gui_changed ;
/**
* Emitted when this Visual Time Axis has been removed
@@ -123,12 +123,12 @@ class VisualTimeAxis : public TimeAxisView
* the destructor, this allows us to capture the source of the deletion
* event
*/
- sigc::signal<void,ARDOUR::stringcr_t,void*> VisualTimeAxisRemoved ;
+ sigc::signal<void,const string &,void*> VisualTimeAxisRemoved ;
/**
* Emitted when we have changed the name of this TimeAxis
*/
- sigc::signal<void,ARDOUR::stringcr_t,ARDOUR::stringcr_t,void*> NameChanged ;
+ sigc::signal<void,const string &,const string &,void*> NameChanged ;
/**
* Emitted when this time axis has been selected for removal
@@ -146,7 +146,7 @@ class VisualTimeAxis : public TimeAxisView
* @param sess the current session
* @param canvas the parent canvas object
*/
- VisualTimeAxis(ARDOUR::stringcr_t name, PublicEditor& ed, ARDOUR::Session& sess, ArdourCanvas::Canvas& canvas) ;
+ VisualTimeAxis(const string & name, PublicEditor& ed, ARDOUR::Session& sess, ArdourCanvas::Canvas& canvas) ;
//---------------------------------------------------------------------------------------//