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:
Paul Davis
2010-05-28 16:33:18 +00:00
parent fdf0db02a0
commit 3d6493abc9
2 changed files with 2 additions and 2 deletions

View File

@@ -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]);
}
}

View File

@@ -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) \