summaryrefslogtreecommitdiffstats
path: root/kiosktool/componentPage.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:36:50 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:36:50 -0600
commita4741f6c87d0ed48e18c7cfb05df66e94b9f97a7 (patch)
tree819e4277d8029879cc1fc0caa46b50452a5d6116 /kiosktool/componentPage.cpp
parentc78679b11d65eff6ef84ed37e49eb08f46957e52 (diff)
downloadkiosktool-a4741f6c87d0ed48e18c7cfb05df66e94b9f97a7.tar.gz
kiosktool-a4741f6c87d0ed48e18c7cfb05df66e94b9f97a7.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'kiosktool/componentPage.cpp')
-rw-r--r--kiosktool/componentPage.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kiosktool/componentPage.cpp b/kiosktool/componentPage.cpp
index 0b519e0..35c90fe 100644
--- a/kiosktool/componentPage.cpp
+++ b/kiosktool/componentPage.cpp
@@ -47,8 +47,8 @@ ComponentPage::ComponentPage( ComponentData *data, Component *component, TQWidge
connect(pbSetup, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotSetup()));
connect(pbPreview, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotPreview()));
- pbSetup->setText(i18n("&Setup %1").tqarg(m_data->caption));
- pbPreview->setText(i18n("&Preview %1").tqarg(m_data->caption));
+ pbSetup->setText(i18n("&Setup %1").arg(m_data->caption));
+ pbPreview->setText(i18n("&Preview %1").arg(m_data->caption));
if (m_data->preview.exec.isEmpty())
pbPreview->hide();
@@ -103,7 +103,7 @@ void ComponentPage::setFocus()
TQString ComponentPage::subCaption()
{
- return i18n("Setup %1").tqarg(m_data->caption);
+ return i18n("Setup %1").arg(m_data->caption);
}
void ComponentPage::slotSetup()
@@ -154,7 +154,7 @@ void ComponentPage::slotSetup()
int result = KMessageBox::questionYesNo(this,
i18n("<qt>You can now configure %1. "
"When you are finished click <b>Save</b> to make the new configuration permanent.")
- .tqarg(m_data->caption), i18n("%1 Setup").tqarg(m_data->caption),
+ .arg(m_data->caption), i18n("%1 Setup").arg(m_data->caption),
KStdGuiItem::save(), KStdGuiItem::discard());
m_saveSettings = (result == KMessageBox::Yes);
if (!dcopApp.isEmpty())
@@ -254,7 +254,7 @@ void ComponentPage::slotPreview()
i18n("<qt>This is how %1 will behave and look with the new settings. "
"Any changes you now make to the settings will not be saved.<p>"
"Click <b>Ok</b> to return to your own personal %2 configuration.")
- .tqarg(m_data->caption, m_data->caption), i18n("%1 Preview").tqarg(m_data->caption));
+ .arg(m_data->caption, m_data->caption), i18n("%1 Preview").arg(m_data->caption));
if (!dcopApp.isEmpty())
KioskRun::self()->dcopRef(dcopApp, dcopObj).call("quit");