mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 14:15:46 +01:00
call foo::foo() before bar::bar(foo).
git-svn-id: svn://localhost/trunk/ardour2@211 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
f5d49dd7d7
commit
ac730a397d
2 changed files with 3 additions and 3 deletions
|
|
@ -78,6 +78,7 @@ OptionEditor::OptionEditor (ARDOUR_UI& uip, PublicEditor& ed, Mixer_UI& mixui)
|
|||
|
||||
/* Paths */
|
||||
path_table (11, 2),
|
||||
sfdb_path_columns(),
|
||||
sfdb_paths(ListStore::create(sfdb_path_columns)),
|
||||
sfdb_path_view(sfdb_paths),
|
||||
|
||||
|
|
|
|||
|
|
@ -80,9 +80,6 @@ class OptionEditor : public Gtk::Dialog
|
|||
|
||||
Gtk::ComboBoxText native_format_combo;
|
||||
|
||||
Glib::RefPtr<Gtk::ListStore> sfdb_paths;
|
||||
Gtk::TreeView sfdb_path_view;
|
||||
|
||||
struct SoundFilePathColumns : public Gtk::TreeModel::ColumnRecord
|
||||
{
|
||||
public:
|
||||
|
|
@ -91,6 +88,8 @@ class OptionEditor : public Gtk::Dialog
|
|||
SoundFilePathColumns() { add (paths); }
|
||||
};
|
||||
SoundFilePathColumns sfdb_path_columns;
|
||||
Glib::RefPtr<Gtk::ListStore> sfdb_paths;
|
||||
Gtk::TreeView sfdb_path_view;
|
||||
|
||||
void setup_path_options();
|
||||
void add_session_paths ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue