[Xfce4-commits] <midori:master> Use GLib timeout rather than the dusty GTK+ API

Christian Dywan noreply at xfce.org
Thu Aug 18 18:08:01 CEST 2011


Updating branch refs/heads/master
         to 49f15f741ee6de74e5d4de87ca30632f43687e7c (commit)
       from 74a1e6687981d57306a1b739628685fc6f1a3d63 (commit)

commit 49f15f741ee6de74e5d4de87ca30632f43687e7c
Author: Christian Dywan <christian at twotoasts.de>
Date:   Thu Aug 18 18:05:57 2011 +0200

    Use GLib timeout rather than the dusty GTK+ API

 midori/midori-browser.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/midori/midori-browser.c b/midori/midori-browser.c
index f116863..0404249 100644
--- a/midori/midori-browser.c
+++ b/midori/midori-browser.c
@@ -1253,7 +1253,7 @@ midori_browser_notify_new_tab (MidoriBrowser *browser)
     if (katze_object_get_boolean (browser->settings, "flash-window-on-new-bg-tabs"))
     {
         gtk_window_set_opacity (GTK_WINDOW (browser), 0.8);
-        gtk_timeout_add (100, (GtkFunction) midori_browser_notify_new_tab_timeout_cb, browser);
+        g_timeout_add (100, (GSourceFunc) midori_browser_notify_new_tab_timeout_cb, browser);
     }
 }
 


More information about the Xfce4-commits mailing list