summaryrefslogtreecommitdiffstats
path: root/kiosktool/kcms/autostart
diff options
context:
space:
mode:
Diffstat (limited to 'kiosktool/kcms/autostart')
-rw-r--r--kiosktool/kcms/autostart/kcmautostart.cpp4
-rw-r--r--kiosktool/kcms/autostart/kcmautostart.h4
2 files changed, 4 insertions, 4 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()
diff --git a/kiosktool/kcms/autostart/kcmautostart.h b/kiosktool/kcms/autostart/kcmautostart.h
index dcfe25a..7265e3e 100644
--- a/kiosktool/kcms/autostart/kcmautostart.h
+++ b/kiosktool/kcms/autostart/kcmautostart.h
@@ -28,7 +28,7 @@ class TQPushButton;
class AutoStartConfig : public TDECModule
{
-Q_OBJECT
+TQ_OBJECT
public:
AutoStartConfig(TQWidget* parent, const char* name= 0L, const TQStringList& foo = TQStringList());
@@ -53,7 +53,7 @@ private:
class CheckListItem : public TQObject, public TQCheckListItem
{
- Q_OBJECT
+ TQ_OBJECT
public:
CheckListItem(TQListView* parent, const TQString &text);