do not reset session for MonitorSection just because monitor out was removed
[ardour.git] / gtk2_ardour / session_dialog.h
index aa418addfc6b4c7d967a3288a1db4306f8268948..3aee9affa90b74442317f0b253228fa160bd7f53 100644 (file)
@@ -84,7 +84,7 @@ private:
        bool back_button_pressed (GdkEventButton*);
        bool open_button_pressed (GdkEventButton*);
 
-       Gtk::Frame info_sample;
+       Gtk::Frame info_frame;
 
        /* initial choice page */
 
@@ -113,7 +113,7 @@ private:
                        add (fullpath);
                        add (sample_rate);
                        add (disk_format);
-                       add (created_with);
+                       add (modified_with);
                        add (time_modified);
                        add (time_formatted);
                }
@@ -122,7 +122,7 @@ private:
                Gtk::TreeModelColumn<std::string> fullpath;
                Gtk::TreeModelColumn<std::string> sample_rate;
                Gtk::TreeModelColumn<std::string> disk_format;
-               Gtk::TreeModelColumn<std::string> created_with;
+               Gtk::TreeModelColumn<std::string> modified_with;
                Gtk::TreeModelColumn<int64_t>     time_modified;
                Gtk::TreeModelColumn<std::string> time_formatted;
        };
@@ -155,27 +155,27 @@ private:
                        add (name);
                        add (path);
                        add (description);
-                       add (created_with_short);
-                       add (created_with_long);
+                       add (modified_with_short);
+                       add (modified_with_long);
                }
 
                Gtk::TreeModelColumn<std::string> name;
                Gtk::TreeModelColumn<std::string> path;
                Gtk::TreeModelColumn<std::string> description;
-               Gtk::TreeModelColumn<std::string> created_with_short;
-               Gtk::TreeModelColumn<std::string> created_with_long;
+               Gtk::TreeModelColumn<std::string> modified_with_short;
+               Gtk::TreeModelColumn<std::string> modified_with_long;
        };
 
        SessionTemplateColumns session_template_columns;
 
-    Glib::RefPtr<Gtk::TreeStore>  template_model;
-    Gtk::TreeView                 template_chooser;
+       Glib::RefPtr<Gtk::TreeStore>  template_model;
+       Gtk::TreeView                 template_chooser;
        Gtk::ScrolledWindow           template_scroller;
 
        void template_row_selected ();
 
        Gtk::TextView template_desc;
-       Gtk::Frame    template_desc_sample;
+       Gtk::Frame    template_desc_frame;
 
        Gtk::VBox session_new_vbox;
        Gtk::VBox session_existing_vbox;