From fb401a891f1b426e9419c0cb16403df407138611 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 27 Dec 2023 19:25:43 +0900 Subject: Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT Signed-off-by: Michele Calgaro --- doc/man/man3/tqtimer.3qt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/man/man3/tqtimer.3qt') 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 -- cgit v1.2.1