From f9289944a1f0a34b3df76770f27461e6b3752b46 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 4 Jan 2024 10:31:06 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit 7c95b68b3568737a10901c3e12d316e06dc4015f) --- conduits/vcalconduit/vcal-conduitbase.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'conduits/vcalconduit/vcal-conduitbase.cpp') diff --git a/conduits/vcalconduit/vcal-conduitbase.cpp b/conduits/vcalconduit/vcal-conduitbase.cpp index 15cfcdc..a720fc5 100644 --- a/conduits/vcalconduit/vcal-conduitbase.cpp +++ b/conduits/vcalconduit/vcal-conduitbase.cpp @@ -176,7 +176,7 @@ VCalConduitBase::~VCalConduitBase() if (!syncMode().isTest() && !openCalendar() ) goto error; // Start processing the sync - TQTimer::singleShot(0, this, TQT_SLOT(slotProcess())); + TQTimer::singleShot(0, this, TQ_SLOT(slotProcess())); return true; error: @@ -200,13 +200,13 @@ void VCalConduitBase::slotProcess() { if( hasNextRecord ) { fState->handleRecord( this ); - TQTimer::singleShot( 0, this, TQT_SLOT( slotProcess() ) ); + TQTimer::singleShot( 0, this, TQ_SLOT( slotProcess() ) ); } // Else finish the current state if there is one else if( fState ) { fState->finishSync( this ); - TQTimer::singleShot( 0, this, TQT_SLOT( slotProcess() ) ); + TQTimer::singleShot( 0, this, TQ_SLOT( slotProcess() ) ); } // No state so sync is finished else -- cgit v1.2.3