summaryrefslogtreecommitdiffstats
path: root/kiosktool/userManagement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kiosktool/userManagement.cpp')
-rw-r--r--kiosktool/userManagement.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kiosktool/userManagement.cpp b/kiosktool/userManagement.cpp
index f69288a..0285d09 100644
--- a/kiosktool/userManagement.cpp
+++ b/kiosktool/userManagement.cpp
@@ -52,13 +52,13 @@ UserManagementPage::UserManagementPage(TQWidget* parent, const char* name, WFlag
// actionButton(KDialogBase::Ok)->setFocus();
- connect(buttonAddGroup, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotAddGroup()));
- connect(buttonDeleteGroup, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotDeleteGroup()));
- connect(buttonAddUser, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotAddUser()));
- connect(buttonDeleteUser, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotDeleteUser()));
+ connect(buttonAddGroup, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotAddGroup()));
+ connect(buttonDeleteGroup, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotDeleteGroup()));
+ connect(buttonAddUser, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotAddUser()));
+ connect(buttonDeleteUser, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotDeleteUser()));
- connect(listGroups, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(slotUpdateButtons()));
- connect(listUsers, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(slotUpdateButtons()));
+ connect(listGroups, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(slotUpdateButtons()));
+ connect(listUsers, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(slotUpdateButtons()));
// init();
static bool firstTime = true;
@@ -66,7 +66,7 @@ UserManagementPage::UserManagementPage(TQWidget* parent, const char* name, WFlag
if (firstTime)
{
firstTime = false;
- TQTimer::singleShot(0, this, TQT_SLOT(slotShowNotice()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotShowNotice()));
}
}