Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing...
[ardour.git] / gtk2_ardour / export_format_selector.h
index 78daf5b5c6e3ebef4063abb37fe8cad00736beb8..46d9bc3f069486a18dba139b439cb6fe5af44e5f 100644 (file)
@@ -33,7 +33,7 @@ namespace ARDOUR {
        class ExportProfileManager;
 }
 
-/// 
+///
 class ExportFormatSelector : public Gtk::HBox {
 
   private:
@@ -45,16 +45,16 @@ class ExportFormatSelector : public Gtk::HBox {
 
        ExportFormatSelector ();
        ~ExportFormatSelector ();
-       
+
        void set_state (ARDOUR::ExportProfileManager::FormatStatePtr state_, ARDOUR::Session * session_);
        void update_format_list ();
-       
+
        sigc::signal<void, FormatPtr> FormatEdited;
        sigc::signal<void, FormatPtr> FormatRemoved;
        sigc::signal<FormatPtr, FormatPtr> NewFormat;
-       
+
        /* Compatibility with other elements */
-       
+
        sigc::signal<void> CriticalSelectionChanged;
 
   private:
@@ -76,7 +76,7 @@ class ExportFormatSelector : public Gtk::HBox {
          public:
                Gtk::TreeModelColumn<FormatPtr>      format;
                Gtk::TreeModelColumn<Glib::ustring>  label;
-       
+
                FormatCols () { add (format); add (label); }
        };
        FormatCols                   format_cols;