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 --- examples/forever/forever.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/forever/forever.cpp') diff --git a/examples/forever/forever.cpp b/examples/forever/forever.cpp index e21dfef61..24e5af910 100644 --- a/examples/forever/forever.cpp +++ b/examples/forever/forever.cpp @@ -34,8 +34,8 @@ Forever::Forever( TQWidget *parent, const char *name ) 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