summaryrefslogtreecommitdiff
path: root/gtk2_ardour/tempo_dialog.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/tempo_dialog.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/tempo_dialog.cc')
-rw-r--r--gtk2_ardour/tempo_dialog.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/tempo_dialog.cc b/gtk2_ardour/tempo_dialog.cc
index 3bbf8d2b79..1bd0e244be 100644
--- a/gtk2_ardour/tempo_dialog.cc
+++ b/gtk2_ardour/tempo_dialog.cc
@@ -12,7 +12,7 @@ using namespace Gtk;
using namespace Gtkmm2ext;
using namespace ARDOUR;
-TempoDialog::TempoDialog (TempoMap& map, jack_nframes_t frame, stringcr_t action)
+TempoDialog::TempoDialog (TempoMap& map, jack_nframes_t frame, const string & action)
: ArdourDialog ("tempo dialog"),
bpm_frame (_("Beats per minute")),
ok_button (action),
@@ -29,7 +29,7 @@ TempoDialog::TempoDialog (TempoMap& map, jack_nframes_t frame, stringcr_t action
init (when, tempo.beats_per_minute(), true);
}
-TempoDialog::TempoDialog (TempoSection& section, stringcr_t action)
+TempoDialog::TempoDialog (TempoSection& section, const string & action)
: ArdourDialog ("tempo dialog"),
bpm_frame (_("Beats per minute")),
ok_button (action),
@@ -129,7 +129,7 @@ TempoDialog::get_bbt_time (BBT_Time& requested)
}
-MeterDialog::MeterDialog (TempoMap& map, jack_nframes_t frame, stringcr_t action)
+MeterDialog::MeterDialog (TempoMap& map, jack_nframes_t frame, const string & action)
: ArdourDialog ("meter dialog"),
note_frame (_("Meter denominator")),
bpb_frame (_("Beats per bar")),
@@ -147,7 +147,7 @@ MeterDialog::MeterDialog (TempoMap& map, jack_nframes_t frame, stringcr_t action
init (when, meter.beats_per_bar(), meter.note_divisor(), true);
}
-MeterDialog::MeterDialog (MeterSection& section, stringcr_t action)
+MeterDialog::MeterDialog (MeterSection& section, const string & action)
: ArdourDialog ("meter dialog"),
note_frame (_("Meter denominator")),
bpb_frame (_("Beats per bar")),