summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-05-06 21:02:08 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-05-06 21:02:08 +0000
commit29da90651e2568cc5c2d941837fae368a2665779 (patch)
tree780c70c20e7f8efb0955427b19de078277b4ddda /libs/ardour/route.cc
parentb0a59ba6daf92a91730a26728b50f6085e65d6e6 (diff)
prolooks helper code from hans, enabling new knob drawing based on Thorsten Wilm's lovely knob/dial design. To Be Tweaked
git-svn-id: svn://localhost/ardour2/branches/3.0@7074 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index e5a4b01fd1..bf0b4db5b5 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -92,8 +92,6 @@ Route::Route (Session& sess, string name, Flag flg, DataType default_type)
, _mute_master (new MuteMaster (sess, name))
, _mute_points (MuteMaster::AllPoints)
, _have_internal_generator (false)
- , _physically_connected (false)
- , _graph_level (-1)
, _solo_safe (false)
, _default_type (default_type)
, _remote_control_id (0)
@@ -2585,12 +2583,6 @@ Route::direct_feeds (boost::shared_ptr<Route> other, bool* only_send)
}
void
-Route::check_physical_connections ()
-{
- _physically_connected = _output->physically_connected ();
-}
-
-void
Route::handle_transport_stopped (bool /*abort_ignored*/, bool did_locate, bool can_flush_processors)
{
nframes_t now = _session.transport_frame();
@@ -3361,8 +3353,3 @@ Route::has_io_processor_named (const string& name)
return false;
}
-void
-Route::set_graph_level (int32_t l)
-{
- _graph_level = l;
-}