summaryrefslogtreecommitdiffstats
path: root/kugar/lib
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:30:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 12:36:03 +0900
commitc0332621bc998c9786f4841e86a62b7711fe4abf (patch)
tree38b3ab6688de7a9396a1c5993a8ec265f5f33b64 /kugar/lib
parent6c81ff8d61ec679e735d3fbd875583b12f0ef0a5 (diff)
downloadkoffice-c0332621bc998c9786f4841e86a62b7711fe4abf.tar.gz
koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kugar/lib')
-rw-r--r--kugar/lib/mreportviewer.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kugar/lib/mreportviewer.cpp b/kugar/lib/mreportviewer.cpp
index 3619d1551..bb8b1135d 100644
--- a/kugar/lib/mreportviewer.cpp
+++ b/kugar/lib/mreportviewer.cpp
@@ -38,11 +38,11 @@ void MReportViewer::init()
scroller = new TQScrollView( this );
// Connect the rendering update signal and slot
- connect( rptEngine, TQT_SIGNAL( signalRenderStatus( int ) ),
- TQT_SLOT( slotRenderProgress( int ) ) );
+ connect( rptEngine, TQ_SIGNAL( signalRenderStatus( int ) ),
+ TQ_SLOT( slotRenderProgress( int ) ) );
- connect( rptEngine, TQT_SIGNAL( preferedTemplate( const TQString & ) ),
- TQT_SIGNAL( preferedTemplate( const TQString & ) ) );
+ connect( rptEngine, TQ_SIGNAL( preferedTemplate( const TQString & ) ),
+ TQ_SIGNAL( preferedTemplate( const TQString & ) ) );
// Get the current color palette
TQPalette p = palette();
@@ -324,7 +324,7 @@ void MReportViewer::printReport( KPrinter &printer )
i18n( "Cancel" ),
totalSteps, this, "progress", true );
progress.setMinimumDuration( M_PROGRESS_DELAY );
- TQObject::connect( &progress, TQT_SIGNAL( cancelled() ), this, TQT_SLOT( slotCancelPrinting() ) );
+ TQObject::connect( &progress, TQ_SIGNAL( cancelled() ), this, TQ_SLOT( slotCancelPrinting() ) );
progress.setProgress( 0 );
tqApp->processEvents();