summaryrefslogtreecommitdiffstats
path: root/kiosktool/kcms
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:20:34 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:20:34 +0900
commit1cc36ce79b82b898bfa2a4e3a56c8d642615f9b2 (patch)
treee61e48b8b670bbd246ab17aee8d2f7e294044012 /kiosktool/kcms
parent6d1e1f26230fa7e7e4d95209884e045b2e911d38 (diff)
downloadkiosktool-1cc36ce79b82b898bfa2a4e3a56c8d642615f9b2.tar.gz
kiosktool-1cc36ce79b82b898bfa2a4e3a56c8d642615f9b2.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kiosktool/kcms')
-rw-r--r--kiosktool/kcms/autostart/kcmautostart.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kiosktool/kcms/autostart/kcmautostart.cpp b/kiosktool/kcms/autostart/kcmautostart.cpp
index e8bb8aa..113d160 100644
--- a/kiosktool/kcms/autostart/kcmautostart.cpp
+++ b/kiosktool/kcms/autostart/kcmautostart.cpp
@@ -117,7 +117,7 @@ void AutoStartConfig::load() {
if ( !name.isEmpty() )
{
CheckListItem *clitem = new CheckListItem( _lvStartup, TQString() );
- connect( clitem, TQT_SIGNAL( changed( TQCheckListItem * ) ), TQT_SLOT( slotItemChecked( TQCheckListItem * ) ) );
+ connect( clitem, TQ_SIGNAL( changed( TQCheckListItem * ) ), TQ_SLOT( slotItemChecked( TQCheckListItem * ) ) );
clitem->setText( 1, name );
clitem->setText( 2, file.readComment() );
clitem->setText( 3, *it );
@@ -150,7 +150,7 @@ void AutoStartConfig::save()
++it;
}
- //TQTimer::singleShot(0, this, TQT_SLOT(slotServiceRunningToggled()));
+ //TQTimer::singleShot(0, this, TQ_SLOT(slotServiceRunningToggled()));
}
void AutoStartConfig::defaults()