diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:37:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:37:05 +0900 |
commit | 61b79fc39298cb8646cee439dc032d5bf0169063 (patch) | |
tree | de0059ceac6459f416369e6e59ffa116be4a60e1 /k3bsetup | |
parent | 766478630b5e0f435d8aef9ee7ba44651e4e431d (diff) | |
download | k3b-61b79fc39298cb8646cee439dc032d5bf0169063.tar.gz k3b-61b79fc39298cb8646cee439dc032d5bf0169063.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'k3bsetup')
-rw-r--r-- | k3bsetup/k3bsetup2.cpp | 20 |
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()) ); } |