summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_routes.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-11-21 17:20:57 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-11-21 17:20:57 +0000
commit9fa51e19b65153db29ff5865b8e22eb58b99c82b (patch)
treecaef0898f94fe59bcded60bd397c349056f1c113 /gtk2_ardour/editor_routes.h
parent78503905d774ced7354ef95bc638829d315f1311 (diff)
some provisional support for "real" solo-isolate behaviour, subject to more discussions with mr. oofus and others
git-svn-id: svn://localhost/ardour2/branches/3.0@6145 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_routes.h')
-rw-r--r--gtk2_ardour/editor_routes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/editor_routes.h b/gtk2_ardour/editor_routes.h
index 72554129c8..0a8947fdd1 100644
--- a/gtk2_ardour/editor_routes.h
+++ b/gtk2_ardour/editor_routes.h
@@ -89,8 +89,8 @@ private:
add (text);
add (visible);
add (rec_enabled);
- add (mute_enabled);
- add (solo_enabled);
+ add (mute_state);
+ add (solo_state);
add (is_track);
add (tv);
add (route);
@@ -99,8 +99,8 @@ private:
Gtk::TreeModelColumn<Glib::ustring> text;
Gtk::TreeModelColumn<bool> visible;
Gtk::TreeModelColumn<bool> rec_enabled;
- Gtk::TreeModelColumn<bool> mute_enabled;
- Gtk::TreeModelColumn<bool> solo_enabled;
+ Gtk::TreeModelColumn<uint32_t> mute_state;
+ Gtk::TreeModelColumn<uint32_t> solo_state;
Gtk::TreeModelColumn<bool> is_track;
Gtk::TreeModelColumn<TimeAxisView*> tv;
Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Route> > route;