From 21e988a811f0db61fb77a02be9b901dc031963e5 Mon Sep 17 00:00:00 2001 From: monsta Date: Thu, 3 Mar 2016 12:37:29 +0300 Subject: use g_timeout_add_seconds for multi-second timeouts from https://git.gnome.org/browse/gnome-dictionary/commit/?id=597ff92a28f42ed187adc9727d91cef2e226a383 --- mate-dictionary/libgdict/gdict-client-context.c | 8 ++++---- mate-dictionary/libgdict/gdict-defbox.c | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'mate-dictionary') diff --git a/mate-dictionary/libgdict/gdict-client-context.c b/mate-dictionary/libgdict/gdict-client-context.c index 65e72a23..118a0d91 100644 --- a/mate-dictionary/libgdict/gdict-client-context.c +++ b/mate-dictionary/libgdict/gdict-client-context.c @@ -136,7 +136,7 @@ typedef struct #define HOSTNAME_LOOKUP_EXPIRE 300 /* wait 30 seconds between connection and receiving data on the line */ -#define CONNECTION_TIMEOUT 30 +#define CONNECTION_TIMEOUT_SEC 30 enum { @@ -1990,9 +1990,9 @@ gdict_client_context_connect (GdictClientContext *context, return FALSE; } - priv->timeout_id = g_timeout_add (CONNECTION_TIMEOUT * 1000, - check_for_connection, - context); + priv->timeout_id = g_timeout_add_seconds (CONNECTION_TIMEOUT_SEC, + check_for_connection, + context); /* XXX - remember that g_io_add_watch() increases the reference count * of the GIOChannel we are using. 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 { -- cgit v1.2.1