From 887537b93f80cd1c0ca81f5a4a42d4373c27d0ba Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sat, 8 Feb 2003 19:23:43 +0000 Subject: Remove gtk_timeout_x calls. Hope I got all of them. 2003-02-08 Marco Pesenti Gritti * lib/widgets/ephy-location-entry.c: (ephy_location_entry_key_press_event_cb): * lib/widgets/ephy-spinner.c: (ephy_spinner_start), (ephy_spinner_remove_update_callback): Remove gtk_timeout_x calls. Hope I got all of them. --- lib/widgets/ephy-location-entry.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/widgets/ephy-location-entry.c') diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 2c7f96ed8..29df7128e 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -369,13 +369,13 @@ ephy_location_entry_key_press_event_cb (GtkWidget *entry, GdkEventKey *event, Ep if (p->autocompletion_timeout != 0) { - gtk_timeout_remove (p->autocompletion_timeout); + g_source_remove (p->autocompletion_timeout); p->autocompletion_timeout = 0; } if (p->show_alternatives_timeout != 0) { - gtk_timeout_remove (p->show_alternatives_timeout); + g_source_remove (p->show_alternatives_timeout); p->show_alternatives_timeout = 0; } -- cgit v1.2.3