diff options
Diffstat (limited to 'doc/man/man3/tqtimer.3qt')
-rw-r--r-- | doc/man/man3/tqtimer.3qt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man3/tqtimer.3qt b/doc/man/man3/tqtimer.3qt index c690bbede..14a67dc74 100644 --- a/doc/man/man3/tqtimer.3qt +++ b/doc/man/man3/tqtimer.3qt @@ -62,7 +62,7 @@ Example: .br QTimer *timer = new QTimer( myObject ); .br - connect( timer, SIGNAL(timeout()), myObject, SLOT(timerDone()) ); + connect( timer, TQ_SIGNAL(timeout()), myObject, TQ_SLOT(timerDone()) ); .br timer->start( 2000, TRUE ); // 2 seconds single-shot timer .br @@ -78,7 +78,7 @@ This can be used to do heavy work while providing a snappy user interface: .br QTimer *t = new QTimer( myObject ); .br - connect( t, SIGNAL(timeout()), SLOT(processOneThing()) ); + connect( t, TQ_SIGNAL(timeout()), TQ_SLOT(processOneThing()) ); .br t->start( 0, FALSE ); .br @@ -130,7 +130,7 @@ Example: .br QApplication a( argc, argv ); .br - QTimer::singleShot( 10*60*1000, &a, SLOT(quit()) ); + QTimer::singleShot( 10*60*1000, &a, TQ_SLOT(quit()) ); .br ... // create and show your widgets .br |