Commit e76c46dd authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

* QT timeout=>timeout() in the MACRO to avoid hanging.

Object::connect: Parentheses expected, signal QTimer::timeout
parent 26eb0b30
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment