summaryrefslogtreecommitdiffstats
path: root/kiosktool/desktopComponent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kiosktool/desktopComponent.cpp')
-rw-r--r--kiosktool/desktopComponent.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kiosktool/desktopComponent.cpp b/kiosktool/desktopComponent.cpp
index 5dea814..15b3b76 100644
--- a/kiosktool/desktopComponent.cpp
+++ b/kiosktool/desktopComponent.cpp
@@ -46,7 +46,7 @@ DesktopComponent::slotSetupPrepare()
{
m_iconPositionsFile = KioskRun::self()->locateLocal("data", "kdesktop/IconPositions");
::unlink(TQFile::encodeName(m_iconPositionsFile));
- connect(&m_timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotSetupStarted()));
+ connect(&m_timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotSetupStarted()));
}
void
@@ -56,8 +56,8 @@ DesktopComponent::slotSetupStarted()
TQFileInfo info(desktop);
if (info.exists())
{
- disconnect(&m_timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotSetupStarted()));
- connect(&m_timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotSetupReady()));
+ disconnect(&m_timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotSetupStarted()));
+ connect(&m_timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotSetupReady()));
m_timer.start(1000, true);
}
else
@@ -113,8 +113,8 @@ DesktopComponent::setupFinished()
{
bool result = true;
- disconnect(&m_timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotSetupStarted()));
- disconnect(&m_timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotSetupReady()));
+ disconnect(&m_timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotSetupStarted()));
+ disconnect(&m_timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotSetupReady()));
m_timer.stop();
KSimpleConfig newCfg(m_iconPositionsFile, true);