summaryrefslogtreecommitdiffstats
path: root/src/misc/k3bblankingdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:37:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-06 19:52:23 +0900
commitce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1 (patch)
treeb6897028e51844a0aeaafefc499fe4c213660b6f /src/misc/k3bblankingdialog.cpp
parent6a101aa2ef54f02a292d6c28f23e2554a72e2bce (diff)
downloadk3b-ce3ab445.tar.gz
k3b-ce3ab445.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 61b79fc39298cb8646cee439dc032d5bf0169063)
Diffstat (limited to 'src/misc/k3bblankingdialog.cpp')
-rw-r--r--src/misc/k3bblankingdialog.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/misc/k3bblankingdialog.cpp b/src/misc/k3bblankingdialog.cpp
index c9baae8..f379983 100644
--- a/src/misc/k3bblankingdialog.cpp
+++ b/src/misc/k3bblankingdialog.cpp
@@ -80,8 +80,8 @@ K3bBlankingDialog::K3bBlankingDialog( TQWidget* parent, const char* name )
setupGui();
- connect( m_writerSelectionWidget, TQT_SIGNAL(writerChanged()), this, TQT_SLOT(slotWriterChanged()) );
- connect( m_writerSelectionWidget, TQT_SIGNAL(writingAppChanged(int)), this, TQT_SLOT(slotWritingAppChanged(int)) );
+ connect( m_writerSelectionWidget, TQ_SIGNAL(writerChanged()), this, TQ_SLOT(slotWriterChanged()) );
+ connect( m_writerSelectionWidget, TQ_SIGNAL(writingAppChanged(int)), this, TQ_SLOT(slotWritingAppChanged(int)) );
slotWriterChanged();
slotWritingAppChanged( m_writerSelectionWidget->writingApp() );
}
@@ -132,12 +132,12 @@ void K3bBlankingDialog::slotStartClicked()
if( d->job == 0 ) {
d->job = new K3bBlankingJob( this, this );
- connect( d->job, TQT_SIGNAL(debuggingOutput(const TQString&, const TQString&)),
- d->debugDialog, TQT_SLOT(addOutput(const TQString&, const TQString&)) );
- connect( d->job, TQT_SIGNAL(debuggingOutput(const TQString&, const TQString&)),
- &d->debugFile, TQT_SLOT(addOutput(const TQString&, const TQString&)) );
- connect( d->job, TQT_SIGNAL(finished(bool)),
- this, TQT_SLOT(slotJobFinished(bool)) );
+ connect( d->job, TQ_SIGNAL(debuggingOutput(const TQString&, const TQString&)),
+ d->debugDialog, TQ_SLOT(addOutput(const TQString&, const TQString&)) );
+ connect( d->job, TQ_SIGNAL(debuggingOutput(const TQString&, const TQString&)),
+ &d->debugFile, TQ_SLOT(addOutput(const TQString&, const TQString&)) );
+ connect( d->job, TQ_SIGNAL(finished(bool)),
+ this, TQ_SLOT(slotJobFinished(bool)) );
}
d->job->setDevice( m_writerSelectionWidget->writerDevice() );
@@ -150,7 +150,7 @@ void K3bBlankingDialog::slotStartClicked()
if( !d->erasingDlg )
d->erasingDlg = new K3bProgressDialog( i18n("Erasing CD-RW"), this );
- connect( d->erasingDlg, TQT_SIGNAL(cancelClicked()), d->job, TQT_SLOT(cancel()) );
+ connect( d->erasingDlg, TQ_SIGNAL(cancelClicked()), d->job, TQ_SLOT(cancel()) );
if( !exitLoopOnHide() )
hide();