From 04913ce7a46fd027856e83a96205fdc388742a19 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 23 May 2024 14:04:45 +0900 Subject: Rename ntqobject*.h and qobject*.cpp to tqobject* Signed-off-by: Michele Calgaro --- doc/html/aclock-example.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/aclock-example.html') diff --git a/doc/html/aclock-example.html b/doc/html/aclock-example.html index e34925e3d..dfd8bc84f 100644 --- a/doc/html/aclock-example.html +++ b/doc/html/aclock-example.html @@ -109,7 +109,7 @@ private: { time = TQTime::currentTime(); // get current time internalTimer = new TQTimer( this ); // create internal timer - connect( internalTimer, TQ_SIGNAL(timeout()), TQ_SLOT(timeout()) ); + connect( internalTimer, TQ_SIGNAL(timeout()), TQ_SLOT(timeout()) ); internalTimer->start( 5000 ); // emit signal every 5 seconds } @@ -136,7 +136,7 @@ void AnalogClock::mousePressEvent( void AnalogClock::setTime( const TQTime & t ) { time = t; - disconnect( internalTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(timeout()) ); + disconnect( internalTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(timeout()) ); if (autoMask()) updateMask(); else -- cgit v1.2.3