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/html/forever-example.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/forever-example.html') diff --git a/doc/html/forever-example.html b/doc/html/forever-example.html index b8193a0d8..620b56a67 100644 --- a/doc/html/forever-example.html +++ b/doc/html/forever-example.html @@ -119,8 +119,8 @@ private: rectangles = 0; startTimer( 0 ); // run continuous timer TQTimer * counter = new TQTimer( this ); - connect( counter, SIGNAL(timeout()), - this, SLOT(updateCaption()) ); + connect( counter, TQ_SIGNAL(timeout()), + this, TQ_SLOT(updateCaption()) ); counter->start( 1000 ); } -- cgit v1.2.1