fix old function left over by removing it

git-svn-id: svn://localhost/trunk/ardour2@248 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-01-08 05:34:37 +00:00
parent d20534e846
commit 2c4a08a8e3

View file

@ -687,22 +687,6 @@ ARDOUR_UI::mmc_device_id_adjusted ()
#endif
}
void
ARDOUR_UI::map_some_session_state (ToggleButton& button,
bool (Session::*get)() const)
{
bool x;
if (session == 0) {
return;
}
if (button.get_active() != (x = (session->*get)())) {
button.set_active (x);
}
}
gint
ARDOUR_UI::session_menu (GdkEventButton *ev)
{