From da8eec7a8311295ee91308eca9fae2146385c512 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 14 Sep 2010 16:51:02 +0000 Subject: remove Glib::ustring from gtk2_ardour git-svn-id: svn://localhost/ardour2/branches/3.0@7774 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/export_format_dialog.h | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'gtk2_ardour/export_format_dialog.h') diff --git a/gtk2_ardour/export_format_dialog.h b/gtk2_ardour/export_format_dialog.h index 33a4015022..f22e342589 100644 --- a/gtk2_ardour/export_format_dialog.h +++ b/gtk2_ardour/export_format_dialog.h @@ -77,7 +77,7 @@ class ExportFormatDialog : public ArdourDialog, public PBD::ScopedConnectionList /* These are connected to signals from GUI components, and should change element states */ - void update_compatibility_selection (Glib::ustring const & path); + void update_compatibility_selection (std::string const & path); void update_quality_selection (); void update_format_selection (); void update_sample_rate_selection (); @@ -108,7 +108,7 @@ class ExportFormatDialog : public ArdourDialog, public PBD::ScopedConnectionList template void change_compatibility (bool compatibility, boost::weak_ptr w_ptr, Glib::RefPtr & list, ColsT & cols, - Glib::ustring const & c_incompatible = "red", Glib::ustring const & c_compatible = "white"); + std::string const & c_incompatible = "red", std::string const & c_compatible = "white"); uint32_t applying_changes_from_engine; @@ -179,7 +179,7 @@ class ExportFormatDialog : public ArdourDialog, public PBD::ScopedConnectionList public: Gtk::TreeModelColumn ptr; Gtk::TreeModelColumn selected; - Gtk::TreeModelColumn label; + Gtk::TreeModelColumn label; CompatibilityCols () { add(ptr); add(selected); add(label); } }; @@ -194,8 +194,8 @@ class ExportFormatDialog : public ArdourDialog, public PBD::ScopedConnectionList { public: Gtk::TreeModelColumn ptr; - Gtk::TreeModelColumn color; - Gtk::TreeModelColumn label; + Gtk::TreeModelColumn color; + Gtk::TreeModelColumn label; QualityCols () { add(ptr); add(color); add(label); } }; @@ -206,8 +206,8 @@ class ExportFormatDialog : public ArdourDialog, public PBD::ScopedConnectionList { public: Gtk::TreeModelColumn ptr; - Gtk::TreeModelColumn color; - Gtk::TreeModelColumn label; + Gtk::TreeModelColumn color; + Gtk::TreeModelColumn label; FormatCols () { add(ptr); add(color); add(label); } }; @@ -218,8 +218,8 @@ class ExportFormatDialog : public ArdourDialog, public PBD::ScopedConnectionList { public: Gtk::TreeModelColumn ptr; - Gtk::TreeModelColumn color; - Gtk::TreeModelColumn label; + Gtk::TreeModelColumn color; + Gtk::TreeModelColumn label; SampleRateCols () { add(ptr); add(color); add(label); } }; @@ -244,7 +244,7 @@ class ExportFormatDialog : public ArdourDialog, public PBD::ScopedConnectionList { public: Gtk::TreeModelColumn id; - Gtk::TreeModelColumn label; + Gtk::TreeModelColumn label; SRCQualityCols () { add(id); add(label); } }; @@ -274,8 +274,8 @@ class ExportFormatDialog : public ArdourDialog, public PBD::ScopedConnectionList { public: Gtk::TreeModelColumn ptr; - Gtk::TreeModelColumn color; - Gtk::TreeModelColumn label; + Gtk::TreeModelColumn color; + Gtk::TreeModelColumn label; SampleFormatCols () { add(ptr); add(color); add(label); } }; @@ -286,8 +286,8 @@ class ExportFormatDialog : public ArdourDialog, public PBD::ScopedConnectionList { public: Gtk::TreeModelColumn ptr; - Gtk::TreeModelColumn color; - Gtk::TreeModelColumn label; + Gtk::TreeModelColumn color; + Gtk::TreeModelColumn label; DitherTypeCols () { add(ptr); add (color); add(label); } }; -- cgit v1.2.3