[Xfce4-commits] [apps/xfmpc] 03/03: Fix ambiguity between GLib.Timeout and Gtk.Timeout (#11062)

noreply at xfce.org noreply at xfce.org
Wed Jun 29 22:28:37 CEST 2016


This is an automated email from the git hooks/post-receive script.

landry pushed a commit to branch master
in repository apps/xfmpc.

commit d828d207fdd787e2f45d9fab34bd1fcd23e6a21c
Author: Christian Hesse <mail at eworm.de>
Date:   Wed Jun 29 22:27:48 2016 +0200

    Fix ambiguity between GLib.Timeout and Gtk.Timeout (#11062)
---
 src/main-window.vala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main-window.vala b/src/main-window.vala
index a386707..a9ee290 100644
--- a/src/main-window.vala
+++ b/src/main-window.vala
@@ -132,7 +132,7 @@ namespace Xfmpc {
 			this.preferences.notify["show-statusbar"].connect (cb_show_statusbar_changed);
 
   	  	  	/* === Timeout === */
-			Timeout.add (1000, refresh);
+			Gtk.Timeout.add (1000, refresh);
 		}
 
 		private void show_hide_status_icon () {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list