summaryrefslogtreecommitdiffstats
path: root/kuser/kgroupsystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kuser/kgroupsystem.cpp')
-rw-r--r--kuser/kgroupsystem.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kuser/kgroupsystem.cpp b/kuser/kgroupsystem.cpp
index 1cb2f13..f30176f 100644
--- a/kuser/kgroupsystem.cpp
+++ b/kuser/kgroupsystem.cpp
@@ -22,7 +22,7 @@
#include <errno.h>
#include <grp.h>
-#include <qstring.h>
+#include <tqstring.h>
#include <kdebug.h>
#include <kmessagebox.h>
@@ -52,13 +52,13 @@ bool KGroupSystem::reload()
while ((p = getgrent()) != NULL) {
tmpKG = new KU::KGroup();
tmpKG->setGID(p->gr_gid);
- tmpKG->setName(QString::fromLocal8Bit(p->gr_name));
- tmpKG->setPwd(QString::fromLocal8Bit(p->gr_passwd));
+ tmpKG->setName(TQString::fromLocal8Bit(p->gr_name));
+ tmpKG->setPwd(TQString::fromLocal8Bit(p->gr_passwd));
char *u_name;
int i = 0;
while ((u_name = p->gr_mem[i])!=0) {
- tmpKG->addUser(QString::fromLocal8Bit(u_name));
+ tmpKG->addUser(TQString::fromLocal8Bit(u_name));
i++;
}