summaryrefslogtreecommitdiff
path: root/gtk2_ardour/search_path_option.h
diff options
context:
space:
mode:
authorThomas Brand <tom@trellis.ch>2017-07-01 18:42:24 +0200
committerRobin Gareus <robin@gareus.org>2017-07-01 19:28:26 +0200
commit63ea7b6516dbd7554d1eff6c98de50cf61fc9a72 (patch)
tree82fa339e009bc082dd8023916990800bea437081 /gtk2_ardour/search_path_option.h
parentf413b83cb9fa50954969a3d849999e1890ce6690 (diff)
NO-OP whitespace (updated GH PR #357)
Diffstat (limited to 'gtk2_ardour/search_path_option.h')
-rw-r--r--gtk2_ardour/search_path_option.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/gtk2_ardour/search_path_option.h b/gtk2_ardour/search_path_option.h
index 0230666656..8e2e4e5c23 100644
--- a/gtk2_ardour/search_path_option.h
+++ b/gtk2_ardour/search_path_option.h
@@ -32,41 +32,41 @@
class SearchPathOption : public Option
{
public:
- SearchPathOption (const std::string& pathname, const std::string& label,
+ SearchPathOption (const std::string& pathname, const std::string& label,
const std::string& default_path,
sigc::slot<std::string>, sigc::slot<bool, std::string>);
- ~SearchPathOption ();
+ ~SearchPathOption ();
- void set_state_from_config ();
- void add_to_page (OptionEditorPage*);
- void clear ();
+ void set_state_from_config ();
+ void add_to_page (OptionEditorPage*);
+ void clear ();
- Gtk::Widget& tip_widget() { return add_chooser; }
+ Gtk::Widget& tip_widget() { return add_chooser; }
protected:
sigc::slot<std::string> _get; ///< slot to get the configuration variable's value
sigc::slot<bool, std::string> _set; ///< slot to set the configuration variable's value
- struct PathEntry {
- PathEntry (const std::string& path, bool removable=true);
+ struct PathEntry {
+ PathEntry (const std::string& path, bool removable=true);
- Gtk::Entry entry;
- Gtk::Button remove_button;
- Gtk::HBox box;
+ Gtk::Entry entry;
+ Gtk::Button remove_button;
+ Gtk::HBox box;
- std::string path;
- };
+ std::string path;
+ };
- std::list<PathEntry*> paths;
- Gtk::FileChooserButton add_chooser;
- Gtk::VBox vbox;
- Gtk::VBox path_box;
- Gtk::Label session_label;
+ std::list<PathEntry*> paths;
+ Gtk::FileChooserButton add_chooser;
+ Gtk::VBox vbox;
+ Gtk::VBox path_box;
+ Gtk::Label session_label;
- void add_path (const std::string& path, bool removable=true);
- void remove_path (PathEntry*);
- void changed ();
- void path_chosen ();
+ void add_path (const std::string& path, bool removable=true);
+ void remove_path (PathEntry*);
+ void changed ();
+ void path_chosen ();
};
#endif /* __gtk_ardour_search_path_option_h__ */