summaryrefslogtreecommitdiffstats
path: root/kiosktool/userManagement.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:30:45 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:30:45 -0600
commitf97153cfb212e0b3feb8c8f1c6376b89c747a9a9 (patch)
treea1532a1cc1328b9911ab4f4925c539bc63028cfe /kiosktool/userManagement.cpp
parentdb44472ee6bea78988dafabfa58fec32894af0a9 (diff)
downloadkiosktool-f97153cfb212e0b3feb8c8f1c6376b89c747a9a9.tar.gz
kiosktool-f97153cfb212e0b3feb8c8f1c6376b89c747a9a9.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'kiosktool/userManagement.cpp')
-rw-r--r--kiosktool/userManagement.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/kiosktool/userManagement.cpp b/kiosktool/userManagement.cpp
index 2cca956..697a37a 100644
--- a/kiosktool/userManagement.cpp
+++ b/kiosktool/userManagement.cpp
@@ -82,7 +82,7 @@ void UserManagementPage::slotShowNotice()
"If you want to use these profiles in combination with older versions you need "
"to manually set the $TDEDIRS environment variable from the <b>starttde</b> "
"script by adding the following line:<br><br>"
- "<i>export TDEDIRS=$(kiosktool-tdedirs)</i><br><br>").tqarg(AVAILABLE_SINCE),
+ "<i>export TDEDIRS=$(kiosktool-tdedirs)</i><br><br>").arg(AVAILABLE_SINCE),
i18n("Attention"), "user-profiles");
}
@@ -171,12 +171,12 @@ void UserManagementPage::slotAddGroup()
KDialogBase::Ok|KDialogBase::Cancel, KDialogBase::Ok, true );
UserManagementGroupUI *wid = new UserManagementGroupUI(&dlg);
- wid->labelCaption->setFixedSize(wid->labelCaption->tqsizeHint());
+ wid->labelCaption->setFixedSize(wid->labelCaption->sizeHint());
wid->comboGroup->insertStringList(m_allGroups);
wid->comboProfile->insertStringList(m_allProfiles);
- wid->setFixedSize(wid->tqsizeHint());
+ wid->setFixedSize(wid->sizeHint());
dlg.setMainWidget(wid);
- dlg.setFixedSize(dlg.tqsizeHint());
+ dlg.setFixedSize(dlg.sizeHint());
while (dlg.exec() == KDialogBase::Accepted)
{
TQString group = wid->comboGroup->currentText();
@@ -193,7 +193,7 @@ void UserManagementPage::slotAddGroup()
{
int result = KMessageBox::warningContinueCancel(this,
i18n("<qt>You already have a profile defined for group <b>%1</b>. "
- "Do you want to replace it?</qt>").tqarg(group),
+ "Do you want to replace it?</qt>").arg(group),
i18n("Duplicate Warning"),
i18n("&Replace"));
if (result != KMessageBox::Continue)
@@ -242,12 +242,12 @@ void UserManagementPage::slotAddUser()
KDialogBase::Ok|KDialogBase::Cancel, KDialogBase::Ok, true );
UserManagementUserUI *wid = new UserManagementUserUI(&dlg);
- wid->labelCaption->setFixedSize(wid->labelCaption->tqsizeHint());
+ wid->labelCaption->setFixedSize(wid->labelCaption->sizeHint());
wid->comboUser->insertStringList(m_allUsers);
wid->comboProfile->insertStringList(m_allProfiles);
- wid->setFixedSize(wid->tqsizeHint());
+ wid->setFixedSize(wid->sizeHint());
dlg.setMainWidget(wid);
- dlg.setFixedSize(dlg.tqsizeHint());
+ dlg.setFixedSize(dlg.sizeHint());
while (dlg.exec() == KDialogBase::Accepted)
{
TQString user = wid->comboUser->currentText();
@@ -264,7 +264,7 @@ void UserManagementPage::slotAddUser()
{
int result = KMessageBox::warningContinueCancel(this,
i18n("<qt>You already have a profile defined for user <b>%1</b>. "
- "Do you want to replace it?</<qt>").tqarg(user),
+ "Do you want to replace it?</<qt>").arg(user),
i18n("Duplicate Warning"),
i18n("&Replace"));
if (result != KMessageBox::Continue)