From bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 4 Jan 2024 10:28:49 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- src/regiongrabber.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/regiongrabber.cpp') diff --git a/src/regiongrabber.cpp b/src/regiongrabber.cpp index de7a19a..9497b8a 100644 --- a/src/regiongrabber.cpp +++ b/src/regiongrabber.cpp @@ -76,9 +76,9 @@ RegionGrabber::RegionGrabber(int delay) sizeTip = new SizeTip( ( TQWidget * )0L ); tipTimer = new TQTimer( this ); - connect( tipTimer, TQT_SIGNAL( timeout() ), TQT_SLOT( updateSizeTip() ) ); + connect( tipTimer, TQ_SIGNAL( timeout() ), TQ_SLOT( updateSizeTip() ) ); - TQTimer::singleShot( delay, this, TQT_SLOT( initGrabber() ) ); + TQTimer::singleShot( delay, this, TQ_SLOT( initGrabber() ) ); } RegionGrabber::~RegionGrabber() -- cgit v1.2.3