mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
replaced slot() with mem_fun() and ptr_fun().
git-svn-id: svn://localhost/trunk/ardour2@29 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
e493b2b7c4
commit
d38e2213d7
72 changed files with 1637 additions and 1637 deletions
|
|
@ -59,8 +59,8 @@ Editor::build_edit_group_list_menu ()
|
|||
edit_group_list_menu->set_name ("ArdourContextMenu");
|
||||
MenuList& items = edit_group_list_menu->items();
|
||||
|
||||
items.push_back (MenuElem (_("Show All"), slot (*this, &Editor::select_all_edit_groups)));
|
||||
items.push_back (MenuElem (_("Hide All"), slot (*this, &Editor::unselect_all_edit_groups)));
|
||||
items.push_back (MenuElem (_("Show All"), mem_fun(*this, &Editor::select_all_edit_groups)));
|
||||
items.push_back (MenuElem (_("Hide All"), mem_fun(*this, &Editor::unselect_all_edit_groups)));
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -189,7 +189,7 @@ Editor::add_edit_group (RouteGroup* group)
|
|||
edit_group_list.rows().back().set_data (group);
|
||||
edit_group_list.rows().back().select();
|
||||
|
||||
group->FlagsChanged.connect (bind (slot (*this, &Editor::group_flags_changed), group));
|
||||
group->FlagsChanged.connect (bind (mem_fun(*this, &Editor::group_flags_changed), group));
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue