summaryrefslogtreecommitdiff
path: root/gtk2_ardour/tempo_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-05-12 17:03:42 +0000
committerCarl Hetherington <carl@carlh.net>2009-05-12 17:03:42 +0000
commit3b89d9eaa03406a5e03648f47734211f09b89d62 (patch)
tree1c8d151bca327d4a5cb7047c8591aa814b9b4ec8 /gtk2_ardour/tempo_dialog.h
parent2e5c935990d6ea5cc6e9a5a6de0fd8c52e68657c (diff)
Remove most using declarations from header files.
git-svn-id: svn://localhost/ardour2/branches/3.0@5069 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/tempo_dialog.h')
-rw-r--r--gtk2_ardour/tempo_dialog.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk2_ardour/tempo_dialog.h b/gtk2_ardour/tempo_dialog.h
index 3cdc29a347..5f014ecbfb 100644
--- a/gtk2_ardour/tempo_dialog.h
+++ b/gtk2_ardour/tempo_dialog.h
@@ -38,7 +38,7 @@
struct TempoDialog : public ArdourDialog
{
Gtk::ComboBoxText note_types;
- vector<string> strings;
+ std::vector<std::string> strings;
Gtk::Adjustment bpm_adjustment;
Gtk::SpinButton bpm_spinner;
Gtk::Frame bpm_frame;
@@ -54,8 +54,8 @@ struct TempoDialog : public ArdourDialog
Gtk::Frame when_frame;
char buf[64];
- TempoDialog (ARDOUR::TempoMap&, nframes_t, const string & action);
- TempoDialog (ARDOUR::TempoSection&, const string & action);
+ TempoDialog (ARDOUR::TempoMap&, nframes_t, const std::string & action);
+ TempoDialog (ARDOUR::TempoSection&, const std::string & action);
double get_bpm ();
double get_note_type ();
@@ -74,7 +74,7 @@ struct MeterDialog : public ArdourDialog
{
Gtk::Entry bpb_entry;
Gtk::ComboBoxText note_types;
- vector<string> strings;
+ std::vector<std::string> strings;
Gtk::Frame bpb_frame;
Gtk::Button ok_button;
Gtk::Button cancel_button;
@@ -82,8 +82,8 @@ struct MeterDialog : public ArdourDialog
Gtk::Frame when_frame;
char buf[64];
- MeterDialog (ARDOUR::TempoMap&, nframes_t, const string & action);
- MeterDialog (ARDOUR::MeterSection&, const string & action);
+ MeterDialog (ARDOUR::TempoMap&, nframes_t, const std::string & action);
+ MeterDialog (ARDOUR::MeterSection&, const std::string & action);
double get_bpb ();
double get_note_type ();