]> git.sesse.net Git - vlc/commitdiff
* QT timeout=>timeout() in the MACRO to avoid hanging.
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 13 Sep 2006 23:16:25 +0000 (23:16 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 13 Sep 2006 23:16:25 +0000 (23:16 +0000)
Object::connect: Parentheses expected, signal QTimer::timeout

modules/gui/qt4/qt4.hpp

index aa8047068206382f2e2fc31369a1363ee57728c3..2b63649e9bf27c6fede95778989bff2837d5f734 100644 (file)
@@ -57,7 +57,7 @@ struct intf_sys_t
 
 #define CONNECT( a, b, c, d ) connect( a, SIGNAL( b ), c, SLOT(d) )
 #define BUTTONACT( b, a ) connect( b, SIGNAL( clicked() ), this, SLOT(a) )
-#define ON_TIMEOUT( act ) CONNECT( THEDP->fixed_timer, timeout, this, act )
+#define ON_TIMEOUT( act ) CONNECT( THEDP->fixed_timer, timeout(), this, act )
 
 static int DialogEvent_Type = QEvent::User + 1;