summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_routes.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-05-21 12:44:41 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:30:44 -0400
commitf022784014d4ae1b3bb75a1c02f206ba8a28d7d6 (patch)
tree7582499a02aa75b8d7c2c7a8173daa2b1ba54302 /gtk2_ardour/editor_routes.h
parent2380bbae5bd77e39020ef779f1ae4a3255ca1e8a (diff)
convert editor routes code to use Stripable
Diffstat (limited to 'gtk2_ardour/editor_routes.h')
-rw-r--r--gtk2_ardour/editor_routes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_routes.h b/gtk2_ardour/editor_routes.h
index cd2e4deb43..7065a2cd4b 100644
--- a/gtk2_ardour/editor_routes.h
+++ b/gtk2_ardour/editor_routes.h
@@ -128,7 +128,7 @@ private:
add (solo_safe_state);
add (is_track);
add (tv);
- add (route);
+ add (stripable);
add (name_editable);
add (is_input_active);
add (is_midi);
@@ -147,7 +147,7 @@ private:
Gtk::TreeModelColumn<uint32_t> solo_safe_state;
Gtk::TreeModelColumn<bool> is_track;
Gtk::TreeModelColumn<TimeAxisView*> tv;
- Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Route> > route;
+ Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Stripable> > stripable;
Gtk::TreeModelColumn<bool> name_editable;
Gtk::TreeModelColumn<bool> is_input_active;
Gtk::TreeModelColumn<bool> is_midi;