summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/session.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-07-06 13:35:50 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-07-06 13:38:13 -0400
commitd514cd2fbf81e99e91bf6c9ae68346eefb021828 (patch)
tree0c5f22ef89308a7ad230b98872acab860184cdaa /libs/ardour/ardour/session.h
parent8d360e86281ba287762b0a73dd63e0af00a3bc9d (diff)
remove a bunch of code that will no longer be used
Diffstat (limited to 'libs/ardour/ardour/session.h')
-rw-r--r--libs/ardour/ardour/session.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h
index febfc2eb2f..ebafdd82f6 100644
--- a/libs/ardour/ardour/session.h
+++ b/libs/ardour/ardour/session.h
@@ -302,10 +302,6 @@ class LIBARDOUR_API Session : public PBD::StatefulDestructible, public PBD::Scop
};
void notify_presentation_info_change ();
- void clear_stripable_selection ();
- void toggle_stripable_selection (boost::shared_ptr<Stripable>);
- void add_stripable_selection (boost::shared_ptr<Stripable>);
- void set_stripable_selection (boost::shared_ptr<Stripable>);
template<class T> void foreach_route (T *obj, void (T::*func)(Route&), bool sort = true);
template<class T> void foreach_route (T *obj, void (T::*func)(boost::shared_ptr<Route>), bool sort = true);
@@ -822,9 +818,6 @@ class LIBARDOUR_API Session : public PBD::StatefulDestructible, public PBD::Scop
boost::shared_ptr<Route> monitor_out() const { return _monitor_out; }
boost::shared_ptr<Route> master_out() const { return _master_out; }
- boost::weak_ptr<Route> get_editor_mixer() const { return _editor_mixer; }
- void set_editor_mixer (boost::weak_ptr<Route> r) { _editor_mixer = r; EditorMixerChanged(); }
- static PBD::Signal0<void> EditorMixerChanged;
void globally_add_internal_sends (boost::shared_ptr<Route> dest, Placement p, bool);
void globally_set_send_gains_from_track (boost::shared_ptr<Route> dest);
@@ -1874,7 +1867,6 @@ class LIBARDOUR_API Session : public PBD::StatefulDestructible, public PBD::Scop
boost::shared_ptr<Route> _master_out;
boost::shared_ptr<Route> _monitor_out;
- boost::weak_ptr<Route> _editor_mixer;
void auto_connect_master_bus ();