summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_preset_selector.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
committerDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
commitbb9cc45cd22af67ac275a5e73accbe14fee664d8 (patch)
treee52977d3eae6ff07b856088041a080a2fa3e5b79 /gtk2_ardour/export_preset_selector.h
parent8c4ce1e2ce35571aed5a686671431fdfffae7f8c (diff)
Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing). Whitespace changes only.
Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red. I don't know the emacs equivalent... git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_preset_selector.h')
-rw-r--r--gtk2_ardour/export_preset_selector.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk2_ardour/export_preset_selector.h b/gtk2_ardour/export_preset_selector.h
index ea7e61b32e..fe78e4bd78 100644
--- a/gtk2_ardour/export_preset_selector.h
+++ b/gtk2_ardour/export_preset_selector.h
@@ -30,11 +30,11 @@ class ExportPresetSelector : public Gtk::HBox
{
public:
-
+
ExportPresetSelector ();
-
+
void set_manager (boost::shared_ptr<ARDOUR::ExportProfileManager> manager);
-
+
sigc::signal<void> CriticalSelectionChanged;
private:
@@ -42,31 +42,31 @@ class ExportPresetSelector : public Gtk::HBox
typedef boost::shared_ptr<ARDOUR::ExportProfileManager> ManagerPtr;
typedef ARDOUR::ExportProfileManager::PresetPtr PresetPtr;
typedef ARDOUR::ExportProfileManager::PresetList PresetList;
-
+
ManagerPtr profile_manager;
sigc::connection select_connection;
-
+
void sync_with_manager ();
void update_selection ();
void save_current ();
void remove_current ();
-
+
struct PresetCols : public Gtk::TreeModelColumnRecord
{
public:
Gtk::TreeModelColumn<PresetPtr> preset;
Gtk::TreeModelColumn<Glib::ustring> label;
-
+
PresetCols () { add (preset); add (label); }
};
PresetCols cols;
Glib::RefPtr<Gtk::ListStore> list;
PresetPtr current;
PresetPtr previous;
-
+
Gtk::Label label;
Gtk::ComboBoxEntry entry;
-
+
Gtk::Button save_button;
Gtk::Button remove_button;
Gtk::Button new_button;