diff options
Diffstat (limited to 'tutorial/t15/main.cpp')
-rw-r--r-- | tutorial/t15/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/t15/main.cpp b/tutorial/t15/main.cpp index de277d7be..bee75527e 100644 --- a/tutorial/t15/main.cpp +++ b/tutorial/t15/main.cpp @@ -24,7 +24,7 @@ void WorkerObject::run() TQTimer *t = new TQTimer(this); connect( t, TQ_SIGNAL(timeout()), TQ_SLOT(timerHandler()) ); - t->start( 1000, FALSE ); + t->start( 1000, false ); for( int count = 0; count < 5; count++ ) { sleep( 1 ); |