mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 17:03:06 +01:00
replaced gtk_idle_add() with g_idle_add()
git-svn-id: svn://localhost/ardour2/branches/3.0@7185 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
fdf0db02a0
commit
3d6493abc9
2 changed files with 2 additions and 2 deletions
|
|
@ -91,6 +91,6 @@ GroupedButtons::one_clicked (uint32_t which)
|
|||
it as inactive causes a segfault ...
|
||||
*/
|
||||
|
||||
gtk_idle_add (reactivate_button, buttons[which]);
|
||||
g_idle_add (reactivate_button, buttons[which]);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@ PopUp::remove ()
|
|||
|
||||
if (delete_on_hide) {
|
||||
std::cerr << "deleting prompter\n";
|
||||
gtk_idle_add (idle_delete, this);
|
||||
g_idle_add (idle_delete, this);
|
||||
}
|
||||
}
|
||||
#define ENSURE_GUI_THREAD(slot) \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue