diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-02-09 03:41:22 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-02-09 03:41:22 +0800 |
commit | dfcb8831f38257733af1d23753487e9041ea5f06 (patch) | |
tree | 04a85f79456f95ea9b92147c9beac1d8f9cf65bd /lib/widgets | |
parent | 2f4619f7a19aa79016051d82c060aaf53ef719c1 (diff) | |
download | gsoc2013-epiphany-dfcb8831f38257733af1d23753487e9041ea5f06.tar gsoc2013-epiphany-dfcb8831f38257733af1d23753487e9041ea5f06.tar.gz gsoc2013-epiphany-dfcb8831f38257733af1d23753487e9041ea5f06.tar.bz2 gsoc2013-epiphany-dfcb8831f38257733af1d23753487e9041ea5f06.tar.lz gsoc2013-epiphany-dfcb8831f38257733af1d23753487e9041ea5f06.tar.xz gsoc2013-epiphany-dfcb8831f38257733af1d23753487e9041ea5f06.tar.zst gsoc2013-epiphany-dfcb8831f38257733af1d23753487e9041ea5f06.zip |
Some more gtk_timeout_add.
2003-02-08 Marco Pesenti Gritti <marco@it.gnome.org>
* lib/widgets/ephy-location-entry.c:
(ephy_location_entry_autocompletion_sources_changed_cb):
Some more gtk_timeout_add.
Diffstat (limited to 'lib/widgets')
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 29df7128e..af7da215e 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -539,7 +539,7 @@ ephy_location_entry_autocompletion_sources_changed_cb (EphyAutocompletion *aw, && p->last_completion && !strcmp (p->last_completion, gtk_entry_get_text (GTK_ENTRY (p->entry)))) { - p->autocompletion_timeout = gtk_timeout_add + p->autocompletion_timeout = g_timeout_add (AUTOCOMPLETION_DELAY, (GSourceFunc) ephy_location_entry_autocompletion_to, w); } @@ -547,7 +547,7 @@ ephy_location_entry_autocompletion_sources_changed_cb (EphyAutocompletion *aw, if (p->show_alternatives_timeout == 0 && p->autocompletion_window_visible) { - p->show_alternatives_timeout = gtk_timeout_add + p->show_alternatives_timeout = g_timeout_add (SHOW_ALTERNATIVES_DELAY, (GSourceFunc) ephy_location_entry_autocompletion_show_alternatives_to, w); } |