13
0

Remove unused methods.

git-svn-id: svn://localhost/ardour2/branches/3.0@8484 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-01-09 15:10:16 +00:00
parent 4153288661
commit e137f66303
2 changed files with 0 additions and 29 deletions

View File

@ -3077,30 +3077,6 @@ Editor::commit_reversible_command ()
}
}
void
Editor::set_route_group_solo (Route& route, bool yn)
{
RouteGroup *route_group;
if ((route_group = route.route_group()) != 0) {
route_group->apply (&Route::set_solo, yn, this);
} else {
route.set_solo (yn, this);
}
}
void
Editor::set_route_group_mute (Route& route, bool yn)
{
RouteGroup *route_group = 0;
if ((route_group = route.route_group()) != 0) {
route_group->apply (&Route::set_mute, yn, this);
} else {
route.set_mute (yn, this);
}
}
void
Editor::history_changed ()
{

View File

@ -1796,11 +1796,6 @@ class Editor : public PublicEditor, public PBD::ScopedConnectionList, public ARD
void freeze_route ();
void unfreeze_route ();
/* route-group solo + mute */
void set_route_group_solo (ARDOUR::Route&, bool);
void set_route_group_mute (ARDOUR::Route&, bool);
/* duplication */
void duplicate_dialog (bool with_dialog);