summaryrefslogtreecommitdiffstats
path: root/kiosktool/profilePropsPage.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:36:50 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-07-30 19:33:10 +0200
commit68b859629107d1395d503acd48b460242e6dc677 (patch)
tree51932a9de06829d4bf72d3b882a2a6049da98c91 /kiosktool/profilePropsPage.cpp
parent2eac26314d787935769ed0f4a632703ca1bcddad (diff)
downloadkiosktool-68b859629107d1395d503acd48b460242e6dc677.tar.gz
kiosktool-68b859629107d1395d503acd48b460242e6dc677.zip
Remove additional unneeded tq method conversions
(cherry picked from commit a4741f6c87d0ed48e18c7cfb05df66e94b9f97a7)
Diffstat (limited to 'kiosktool/profilePropsPage.cpp')
-rw-r--r--kiosktool/profilePropsPage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kiosktool/profilePropsPage.cpp b/kiosktool/profilePropsPage.cpp
index 4396218..97ca85d 100644
--- a/kiosktool/profilePropsPage.cpp
+++ b/kiosktool/profilePropsPage.cpp
@@ -150,7 +150,7 @@ bool ProfilePropsPage::save()
if (!userInfo.isValid())
{
KMessageBox::sorry(this,
- i18n("<qt>The user <b>%1</b> is not an existing user.</qt>").tqarg(user));
+ i18n("<qt>The user <b>%1</b> is not an existing user.</qt>").arg(user));
comboUser->setFocus();
return false;
}
@@ -182,7 +182,7 @@ bool ProfilePropsPage::save()
i18n("<qt>The directory for this profile has changed "
"from <b>%1</b> to <b>%2</b>.<p>"
"The following files under <b>%3</b> will be moved to <b>%4</b>")
- .tqarg(m_origInstallDir, installDir, m_origInstallDir, installDir),
+ .arg(m_origInstallDir, installDir, m_origInstallDir, installDir),
fileList,
i18n("Profile Directory Changed"));
if (msgResult != KMessageBox::Continue)