summaryrefslogtreecommitdiffstats
path: root/src/misc/k3bblankingdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/k3bblankingdialog.cpp')
-rw-r--r--src/misc/k3bblankingdialog.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/misc/k3bblankingdialog.cpp b/src/misc/k3bblankingdialog.cpp
index 0594f1c..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() );
}
@@ -108,7 +108,7 @@ void K3bBlankingDialog::setupGui()
m_writerSelectionWidget->setWantedMediumState( K3bDevice::STATE_COMPLETE|K3bDevice::STATE_INCOMPLETE );
// --- setup the blanking type button group -----------------------------
- TQGroupBox* groupBlankType = new TQGroupBox( 1, Qt::Vertical, i18n("&Erase Type"), frame );
+ TQGroupBox* groupBlankType = new TQGroupBox( 1, TQt::Vertical, i18n("&Erase Type"), frame );
groupBlankType->layout()->setSpacing( spacingHint() );
groupBlankType->layout()->setMargin( marginHint() );
@@ -131,13 +131,13 @@ void K3bBlankingDialog::slotStartClicked()
d->debugFile.open();
if( d->job == 0 ) {
- d->job = new K3bBlankingJob( this, TQT_TQOBJECT(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)) );
+ d->job = new K3bBlankingJob( this, this );
+ 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();