diff options
Diffstat (limited to 'kugar/lib/mreportviewer.cpp')
-rw-r--r-- | kugar/lib/mreportviewer.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kugar/lib/mreportviewer.cpp b/kugar/lib/mreportviewer.cpp index 3619d155..bb8b1135 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(); |