diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
commit | aa3a1ca934bc541bddd3fa136a85f106f7da266e (patch) | |
tree | 9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /kuser/kgroupsystem.cpp | |
parent | b10cf7066791a2f362495890cd50c984e8025412 (diff) | |
download | tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.tar.gz tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1157635 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kuser/kgroupsystem.cpp')
-rw-r--r-- | kuser/kgroupsystem.cpp | 8 |
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++; } |