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:
@@ -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) \
|
||||
|
||||
Reference in New Issue
Block a user