summaryrefslogtreecommitdiffstats
path: root/kpackage
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commitdbb67f90e8177bba3f6527852af1e5f4b7a00325 (patch)
treeb3ec423edc172fee393480c6cd4cfe4ae5746017 /kpackage
parente1fedebd35564879715ec11012b5acaf3068edb9 (diff)
downloadtdeadmin-dbb67f90e8177bba3f6527852af1e5f4b7a00325.tar.gz
tdeadmin-dbb67f90e8177bba3f6527852af1e5f4b7a00325.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpackage')
-rw-r--r--kpackage/gentooInterface.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kpackage/gentooInterface.cpp b/kpackage/gentooInterface.cpp
index 22eaefc..65338f4 100644
--- a/kpackage/gentooInterface.cpp
+++ b/kpackage/gentooInterface.cpp
@@ -39,7 +39,7 @@
Should we care about the world-file?
- Read tqmasked packages from /usr/portage/profiles/package.tqmask
+ Read masked packages from /usr/portage/profiles/package.tqmask
Use flags and CFLAGS?
@@ -181,14 +181,14 @@ void Gentoo::listInstalledPackages(TQPtrList<packageInfo> *pki)
continue;
}
- for (TQStringList::Iterator tqmaskIt = packageMask.begin(); tqmaskIt != packageMask.end(); ++tqmaskIt)
+ for (TQStringList::Iterator maskIt = packageMask.begin(); maskIt != packageMask.end(); ++maskIt)
{
// FIXME Should all be handled, just not implemented yet
- if ((*tqmaskIt).startsWith("<") || (*tqmaskIt).startsWith("=") || (*tqmaskIt).startsWith("~") || (*tqmaskIt).startsWith(">"))
+ if ((*maskIt).startsWith("<") || (*maskIt).startsWith("=") || (*maskIt).startsWith("~") || (*maskIt).startsWith(">"))
continue;
- if (*category+"/"+name == *tqmaskIt)
+ if (*category+"/"+name == *maskIt)
{
- kdDebug() << "Package: " << name << "-" << version << " is tqmasked" << endl;
+ kdDebug() << "Package: " << name << "-" << version << " is masked" << endl;
isMasked = true;
break;
}