summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_ops.cc
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/editor_ops.cc
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/editor_ops.cc')
-rw-r--r--gtk2_ardour/editor_ops.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc
index 6cae55a4bc..a4f3ffd02a 100644
--- a/gtk2_ardour/editor_ops.cc
+++ b/gtk2_ardour/editor_ops.cc
@@ -1118,7 +1118,7 @@ Editor::temporal_zoom_session ()
}
void
-Editor::temporal_zoom_by_frame (jack_nframes_t start, jack_nframes_t end, stringcr_t op)
+Editor::temporal_zoom_by_frame (jack_nframes_t start, jack_nframes_t end, const string & op)
{
if (!session) return;
@@ -1962,7 +1962,7 @@ Editor::do_import (vector<string> paths, bool split, bool as_tracks)
}
int
-Editor::reject_because_rate_differs (stringcr_t path, SF_INFO& finfo, stringcr_t action, bool multiple_pending)
+Editor::reject_because_rate_differs (const string & path, SF_INFO& finfo, const string & action, bool multiple_pending)
{
if (!session) {
return 1;
@@ -2252,7 +2252,7 @@ Editor::do_insert_sndfile (vector<string> paths, bool split, jack_nframes_t pos)
}
void
-Editor::insert_sndfile_into (stringcr_t path, bool multi, AudioTimeAxisView* tv, jack_nframes_t& pos, bool prompt)
+Editor::insert_sndfile_into (const string & path, bool multi, AudioTimeAxisView* tv, jack_nframes_t& pos, bool prompt)
{
SndFileSource *source = 0; /* keep g++ quiet */
AudioRegion::SourceList sources;