13
0

Remove unused method.

git-svn-id: svn://localhost/ardour2/branches/3.0@12649 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2012-06-11 09:50:58 +00:00
parent 9e4fc0e57f
commit 8f371cd60d
2 changed files with 0 additions and 18 deletions

View File

@ -137,23 +137,6 @@ AutomationController::end_touch ()
}
}
void
AutomationController::automation_state_changed ()
{
ENSURE_GUI_THREAD (*this, &AutomationController::automation_state_changed)
bool x = (_controllable->automation_state() != Off);
/* start watching automation so that things move */
_screen_update_connection.disconnect();
if (x) {
_screen_update_connection = ARDOUR_UI::RapidScreenUpdate.connect (
sigc::mem_fun (*this, &AutomationController::display_effective_value));
}
}
void
AutomationController::value_changed ()
{

View File

@ -62,7 +62,6 @@ private:
void end_touch();
void value_changed();
void automation_state_changed();
bool _ignore_change;
boost::shared_ptr<ARDOUR::Automatable> _printer;