summaryrefslogtreecommitdiffstats
path: root/kiosktool/componentPage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kiosktool/componentPage.cpp')
-rw-r--r--kiosktool/componentPage.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/kiosktool/componentPage.cpp b/kiosktool/componentPage.cpp
index 105a606..e4b666f 100644
--- a/kiosktool/componentPage.cpp
+++ b/kiosktool/componentPage.cpp
@@ -44,8 +44,8 @@ ComponentPage::ComponentPage( ComponentData *data, Component *component, TQWidge
: ComponentPageUI(parent, name, fl), PageWidget(this), m_data(data), m_component(component)
{
m_process = 0;
- connect(pbSetup, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotSetup()));
- connect(pbPreview, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotPreview()));
+ connect(pbSetup, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotSetup()));
+ connect(pbPreview, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotPreview()));
pbSetup->setText(i18n("&Setup %1").arg(m_data->caption));
pbPreview->setText(i18n("&Preview %1").arg(m_data->caption));
@@ -63,14 +63,14 @@ ComponentPage::ComponentPage( ComponentData *data, Component *component, TQWidge
if (firstTime)
{
firstTime = false;
- TQTimer::singleShot(0, this, TQT_SLOT(slotShowNotice()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotShowNotice()));
}
}
fillActionList(listComponentConfig, m_data);
- connect(listComponentConfig, TQT_SIGNAL(currentChanged(TQListViewItem *)),
- this, TQT_SLOT(slotShowAction(TQListViewItem *)));
+ connect(listComponentConfig, TQ_SIGNAL(currentChanged(TQListViewItem *)),
+ this, TQ_SLOT(slotShowAction(TQListViewItem *)));
slotShowAction(listComponentConfig->currentItem());
}
@@ -140,8 +140,8 @@ void ComponentPage::slotSetup()
if (!dcopApp.isEmpty())
{
KioskRun::self()->dcopClient()->setNotifications(true);
- connect(KioskRun::self()->dcopClient(), TQT_SIGNAL(applicationRegistered( const TQCString& )),
- this, TQT_SLOT(slotSetupAppRegistered( const TQCString& )));
+ connect(KioskRun::self()->dcopClient(), TQ_SIGNAL(applicationRegistered( const TQCString& )),
+ this, TQ_SLOT(slotSetupAppRegistered( const TQCString& )));
}
TQStringList args;
@@ -162,7 +162,7 @@ void ComponentPage::slotSetup()
if (m_process->isRunning())
{
- connect(m_process, TQT_SIGNAL(processExited(TDEProcess *)), this, TQT_SLOT(slotPreviewDone()));
+ connect(m_process, TQ_SIGNAL(processExited(TDEProcess *)), this, TQ_SLOT(slotPreviewDone()));
}
else
{
@@ -176,8 +176,8 @@ void ComponentPage::slotSetupDone()
m_process = 0;
KioskRun::self()->dcopClient()->setNotifications(false);
- disconnect(KioskRun::self()->dcopClient(), TQT_SIGNAL(applicationRegistered( const TQCString& )),
- this, TQT_SLOT(slotSetupAppRegistered( const TQCString& )));
+ disconnect(KioskRun::self()->dcopClient(), TQ_SIGNAL(applicationRegistered( const TQCString& )),
+ this, TQ_SLOT(slotSetupAppRegistered( const TQCString& )));
KioskRun::self()->makeMutable(false);
if (m_saveSettings)
@@ -239,8 +239,8 @@ void ComponentPage::slotPreview()
if (!dcopApp.isEmpty())
{
KioskRun::self()->dcopClient()->setNotifications(true);
- connect(KioskRun::self()->dcopClient(), TQT_SIGNAL(applicationRegistered( const TQCString& )),
- this, TQT_SLOT(slotPreviewAppRegistered( const TQCString& )));
+ connect(KioskRun::self()->dcopClient(), TQ_SIGNAL(applicationRegistered( const TQCString& )),
+ this, TQ_SLOT(slotPreviewAppRegistered( const TQCString& )));
}
TQStringList args;
@@ -260,7 +260,7 @@ void ComponentPage::slotPreview()
if (m_process->isRunning())
{
- connect(m_process, TQT_SIGNAL(processExited(TDEProcess *)), this, TQT_SLOT(slotPreviewDone()));
+ connect(m_process, TQ_SIGNAL(processExited(TDEProcess *)), this, TQ_SLOT(slotPreviewDone()));
}
else
{
@@ -282,8 +282,8 @@ void ComponentPage::slotPreviewAppRegistered( const TQCString &appid)
void ComponentPage::slotPreviewDone()
{
KioskRun::self()->dcopClient()->setNotifications(false);
- disconnect(KioskRun::self()->dcopClient(), TQT_SIGNAL(applicationRegistered( const TQCString& )),
- this, TQT_SLOT(slotPreviewAppRegistered( const TQCString& )));
+ disconnect(KioskRun::self()->dcopClient(), TQ_SIGNAL(applicationRegistered( const TQCString& )),
+ this, TQ_SLOT(slotPreviewAppRegistered( const TQCString& )));
delete m_process;
m_process = 0;