diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | 4be907152dfb5461311d9db1d63120c28a0bad0a (patch) | |
tree | 6ee40d7c10190ef860a9be24d2938bef888bb262 /src/kdesvnd/kdesvnd_dcop.cpp | |
parent | 421a6fdcbe08c6297214e7397ab98e535148686f (diff) | |
download | tdesvn-4be907152dfb5461311d9db1d63120c28a0bad0a.tar.gz tdesvn-4be907152dfb5461311d9db1d63120c28a0bad0a.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/applications/kdesvn@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kdesvnd/kdesvnd_dcop.cpp')
-rw-r--r-- | src/kdesvnd/kdesvnd_dcop.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kdesvnd/kdesvnd_dcop.cpp b/src/kdesvnd/kdesvnd_dcop.cpp index 09afbec..090d318 100644 --- a/src/kdesvnd/kdesvnd_dcop.cpp +++ b/src/kdesvnd/kdesvnd_dcop.cpp @@ -127,14 +127,14 @@ TQStringList kdesvnd_dcop::getActionMenu (const KURL::List list) TQString base; - bool tqparentIsWc = false; + bool parentIsWc = false; bool itemIsWc = isWorkingCopy(list[0],base); bool itemIsRepository = false; TQString _par = list[0].directory(true,true); - tqparentIsWc = isWorkingCopy(_par,base); + parentIsWc = isWorkingCopy(_par,base); - if (!tqparentIsWc && !itemIsWc) { + if (!parentIsWc && !itemIsWc) { itemIsRepository = isRepository(list[0]); } @@ -151,7 +151,7 @@ TQStringList kdesvnd_dcop::getActionMenu (const KURL::List list) << "Commit"; } - if (!tqparentIsWc && !itemIsWc) { + if (!parentIsWc && !itemIsWc) { if (itemIsRepository) { result << "Log" << "Info"; |