diff options
author | monsta <[email protected]> | 2016-03-03 12:37:29 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-03-03 12:37:29 +0300 |
commit | 21e988a811f0db61fb77a02be9b901dc031963e5 (patch) | |
tree | 5aa3f0caf64613131ae5d6660968e0723e22015b /mate-dictionary/libgdict/gdict-defbox.c | |
parent | 78a1b75ac35d045d8cfd7bc71dce0322ac8f8ff2 (diff) | |
download | mate-utils-21e988a811f0db61fb77a02be9b901dc031963e5.tar.bz2 mate-utils-21e988a811f0db61fb77a02be9b901dc031963e5.tar.xz |
use g_timeout_add_seconds for multi-second timeouts
from
https://git.gnome.org/browse/gnome-dictionary/commit/?id=597ff92a28f42ed187adc9727d91cef2e226a383
Diffstat (limited to 'mate-dictionary/libgdict/gdict-defbox.c')
-rw-r--r-- | mate-dictionary/libgdict/gdict-defbox.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mate-dictionary/libgdict/gdict-defbox.c b/mate-dictionary/libgdict/gdict-defbox.c index 14972698..c71c6921 100644 --- a/mate-dictionary/libgdict/gdict-defbox.c +++ b/mate-dictionary/libgdict/gdict-defbox.c @@ -1145,7 +1145,7 @@ find_prev_clicked_cb (GtkWidget *widget, if (priv->hide_timeout) { g_source_remove (priv->hide_timeout); - priv->hide_timeout = g_timeout_add (5000, hide_find_pane, defbox); + priv->hide_timeout = g_timeout_add_seconds (5, hide_find_pane, defbox); } } @@ -1239,7 +1239,7 @@ find_next_clicked_cb (GtkWidget *widget, if (priv->hide_timeout) { g_source_remove (priv->hide_timeout); - priv->hide_timeout = g_timeout_add (5000, hide_find_pane, defbox); + priv->hide_timeout = g_timeout_add_seconds (5, hide_find_pane, defbox); } } @@ -1275,7 +1275,7 @@ find_entry_changed_cb (GtkWidget *widget, if (priv->hide_timeout) { g_source_remove (priv->hide_timeout); - priv->hide_timeout = g_timeout_add (5000, hide_find_pane, defbox); + priv->hide_timeout = g_timeout_add_seconds (5, hide_find_pane, defbox); } } @@ -1755,7 +1755,7 @@ gdict_defbox_real_show_find (GdictDefbox *defbox) gtk_widget_grab_focus (defbox->priv->find_entry); - defbox->priv->hide_timeout = g_timeout_add (5000, hide_find_pane, defbox); + defbox->priv->hide_timeout = g_timeout_add_seconds (5, hide_find_pane, defbox); } static void @@ -2128,7 +2128,7 @@ gdict_defbox_set_show_find (GdictDefbox *defbox, gtk_widget_grab_focus (priv->find_entry); if (!priv->hide_timeout) - priv->hide_timeout = g_timeout_add (5000, hide_find_pane, defbox); + priv->hide_timeout = g_timeout_add_seconds (5, hide_find_pane, defbox); } else { |