summaryrefslogtreecommitdiffstats
path: root/k3bsetup/k3bsetup2.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 /k3bsetup/k3bsetup2.cpp
parent6a101aa2ef54f02a292d6c28f23e2554a72e2bce (diff)
downloadk3b-ce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1.tar.gz
k3b-ce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1.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 'k3bsetup/k3bsetup2.cpp')
-rw-r--r--k3bsetup/k3bsetup2.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/k3bsetup/k3bsetup2.cpp b/k3bsetup/k3bsetup2.cpp
index 482ece6..89a4d86 100644
--- a/k3bsetup/k3bsetup2.cpp
+++ b/k3bsetup/k3bsetup2.cpp
@@ -144,14 +144,14 @@ K3bSetup2::K3bSetup2( TQWidget *parent, const char *, const TQStringList& )
w->textLabel2->hide();
- connect( w->m_checkUseBurningGroup, TQT_SIGNAL(toggled(bool)),
- this, TQT_SLOT(updateViews()) );
- connect( w->m_editBurningGroup, TQT_SIGNAL(textChanged(const TQString&)),
- this, TQT_SLOT(updateViews()) );
- connect( w->m_editSearchPath, TQT_SIGNAL(changed()),
- this, TQT_SLOT(slotSearchPrograms()) );
- connect( w->m_buttonAddDevice, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotAddDevice()) );
+ connect( w->m_checkUseBurningGroup, TQ_SIGNAL(toggled(bool)),
+ this, TQ_SLOT(updateViews()) );
+ connect( w->m_editBurningGroup, TQ_SIGNAL(textChanged(const TQString&)),
+ this, TQ_SLOT(updateViews()) );
+ connect( w->m_editSearchPath, TQ_SIGNAL(changed()),
+ this, TQ_SLOT(slotSearchPrograms()) );
+ connect( w->m_buttonAddDevice, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotAddDevice()) );
d->externalBinManager = new K3bExternalBinManager( this );
@@ -171,7 +171,7 @@ K3bSetup2::K3bSetup2( TQWidget *parent, const char *, const TQStringList& )
// This is a hack to work around a kcm bug which makes the faulty assumption that
// every module starts without anything to apply
//
- TQTimer::singleShot( 0, this, TQT_SLOT(updateViews()) );
+ TQTimer::singleShot( 0, this, TQ_SLOT(updateViews()) );
if( getuid() != 0 || !d->config->checkConfigFilesWritable( true ) )
makeReadOnly();
@@ -383,7 +383,7 @@ void K3bSetup2::defaults()
// This is a hack to work around a kcm bug which makes the faulty assumption that
// every module defaults to a state where nothing is to be applied
//
- TQTimer::singleShot( 0, this, TQT_SLOT(updateViews()) );
+ TQTimer::singleShot( 0, this, TQ_SLOT(updateViews()) );
}