From 3d6493abc9d332132aef250a551d60fe45f7b3eb Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 28 May 2010 16:33:18 +0000 Subject: [PATCH] replaced gtk_idle_add() with g_idle_add() git-svn-id: svn://localhost/ardour2/branches/3.0@7185 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/gtkmm2ext/grouped_buttons.cc | 2 +- libs/gtkmm2ext/popup.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/gtkmm2ext/grouped_buttons.cc b/libs/gtkmm2ext/grouped_buttons.cc index b16b983d02..cd45840a04 100644 --- a/libs/gtkmm2ext/grouped_buttons.cc +++ b/libs/gtkmm2ext/grouped_buttons.cc @@ -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]); } } diff --git a/libs/gtkmm2ext/popup.cc b/libs/gtkmm2ext/popup.cc index 2a7d7057d8..6f4a8a5427 100644 --- a/libs/gtkmm2ext/popup.cc +++ b/libs/gtkmm2ext/popup.cc @@ -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) \