call foo::foo() before bar::bar(foo).
authorKarsten Wiese <fzuuzf@googlemail.com>
Tue, 27 Dec 2005 23:06:32 +0000 (23:06 +0000)
committerKarsten Wiese <fzuuzf@googlemail.com>
Tue, 27 Dec 2005 23:06:32 +0000 (23:06 +0000)
git-svn-id: svn://localhost/trunk/ardour2@211 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/option_editor.cc
gtk2_ardour/option_editor.h

index ad440e02824580f3142f24690fd42e67684013d5..58bf35ee59c7a38bebb88b1b0562f91935d28fa1 100644 (file)
@@ -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),
 
index b23014c4b44f4fcbff9922d7124346c7f8aeee11..d1513f4661b6a608f3baf11e2e0946165265d2a1 100644 (file)
@@ -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 ();