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 <m...@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.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to