summaryrefslogtreecommitdiff
path: root/gtk2_ardour/visual_time_axis.h
diff options
context:
space:
mode:
authorKarsten Wiese <fzuuzf@googlemail.com>2005-12-22 12:23:54 +0000
committerKarsten Wiese <fzuuzf@googlemail.com>2005-12-22 12:23:54 +0000
commit5c819462b8f146b25a7dbe2c948a8407e7c5dbbb (patch)
tree48da513cd2ed545a7eed4ba0337d40a5888eed47 /gtk2_ardour/visual_time_axis.h
parent541ff632019c53a93611ad34f43930595386afe9 (diff)
s/stringcr_t/const string &/
git-svn-id: svn://localhost/trunk/ardour2@201 d708f5d6-7413-0410-9779-e7cbd77b26cf
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) ;
//---------------------------------------------------------------------------------------//