summaryrefslogtreecommitdiff
path: root/gtk2_ardour/visual_time_axis.h
diff options
context:
space:
mode:
authorKarsten Wiese <fzuuzf@googlemail.com>2005-12-16 22:30:49 +0000
committerKarsten Wiese <fzuuzf@googlemail.com>2005-12-16 22:30:49 +0000
commit170d6b24cec9b7fe51d74b75544a097948e03082 (patch)
tree2dbaf7b89b721aa63f06ec11a4f57b5fdd6b0480 /gtk2_ardour/visual_time_axis.h
parentcf37405a71ef9d4f0d0d4e9303a51bfc55d7cd89 (diff)
use stringcr_t and gain 1/1000 binary size reduction. not thaat much...
git-svn-id: svn://localhost/trunk/ardour2@194 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 4c1827d284..1442b011aa 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(std::string name, void* src) ;
+ virtual void set_time_axis_name(ARDOUR::stringcr_t 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,string,void*> gui_changed ;
+ sigc::signal<void,ARDOUR::stringcr_t,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,std::string,void*> VisualTimeAxisRemoved ;
+ sigc::signal<void,ARDOUR::stringcr_t,void*> VisualTimeAxisRemoved ;
/**
* Emitted when we have changed the name of this TimeAxis
*/
- sigc::signal<void,std::string,std::string,void*> NameChanged ;
+ sigc::signal<void,ARDOUR::stringcr_t,ARDOUR::stringcr_t,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(std::string name, PublicEditor& ed, ARDOUR::Session& sess, ArdourCanvas::Canvas& canvas) ;
+ VisualTimeAxis(ARDOUR::stringcr_t name, PublicEditor& ed, ARDOUR::Session& sess, ArdourCanvas::Canvas& canvas) ;
//---------------------------------------------------------------------------------------//