X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fexport_format_selector.cc;h=dbc74908d1e3469ae429a3065e28e0dbdf39486e;hb=11e50fe0c5f441f8d017529a62ac4c8eeb6403c2;hp=a2ba3f352f8e502df7fa79457ad3333a1432072f;hpb=072e49d3240da0fa3f4de21ed83e0c9719f0ce32;p=ardour.git diff --git a/gtk2_ardour/export_format_selector.cc b/gtk2_ardour/export_format_selector.cc index a2ba3f352f..dbc74908d1 100644 --- a/gtk2_ardour/export_format_selector.cc +++ b/gtk2_ardour/export_format_selector.cc @@ -17,15 +17,16 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ - -#include "export_format_selector.h" - -#include "export_format_dialog.h" +#include +#include #include "ardour/export_format_specification.h" #include "ardour/export_profile_manager.h" -#include "i18n.h" +#include "export_format_selector.h" +#include "export_format_dialog.h" + +#include "pbd/i18n.h" ExportFormatSelector::ExportFormatSelector () : edit_button (Gtk::Stock::EDIT), @@ -37,11 +38,6 @@ ExportFormatSelector::ExportFormatSelector () : pack_start (remove_button, false, false, 3); pack_start (new_button, false, false, 3); - format_combo.set_name ("PaddedButton"); - edit_button.set_name ("PaddedButton"); - remove_button.set_name ("PaddedButton"); - new_button.set_name ("PaddedButton"); - edit_button.signal_clicked().connect (sigc::hide_return (sigc::bind (sigc::mem_fun (*this, &ExportFormatSelector::open_edit_dialog), false))); remove_button.signal_clicked().connect (sigc::bind (sigc::mem_fun (*this, &ExportFormatSelector::remove_format), true)); new_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportFormatSelector::add_new_format));