summaryrefslogtreecommitdiffstats
path: root/src/piklab-hex/main.cpp
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
commit704123e8152edcd80447659317f1c8b31a1576e6 (patch)
tree55b04c5bf6dd4a3bc998a26d354c4711bbc043d4 /src/piklab-hex/main.cpp
parent0aaa8e3fc8f8a1481333b564f0922277c8d8ad59 (diff)
downloadpiklab-704123e8152edcd80447659317f1c8b31a1576e6.tar.gz
piklab-704123e8152edcd80447659317f1c8b31a1576e6.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/piklab@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/piklab-hex/main.cpp')
-rw-r--r--src/piklab-hex/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/piklab-hex/main.cpp b/src/piklab-hex/main.cpp
index 7c5ee75..0d9a7cc 100644
--- a/src/piklab-hex/main.cpp
+++ b/src/piklab-hex/main.cpp
@@ -159,11 +159,11 @@ CLI::ExitCode CLI::Main::executeCommand(const TQString &command)
bool firstInSecond = true, secondInFirst = true;
HexBuffer::const_iterator it;
for (it=_source1.begin(); it!=_source1.end(); ++it) {
- if ( it.data().tqmaskWith(0xFFFF)==_source2[it.key()].tqmaskWith(0xFFFF) ) continue;
+ if ( it.data().maskWith(0xFFFF)==_source2[it.key()].maskWith(0xFFFF) ) continue;
firstInSecond = false;
}
for (it=_source2.begin(); it!=_source2.end(); ++it) {
- if ( it.data().tqmaskWith(0xFFFF)==_source1[it.key()].tqmaskWith(0xFFFF) ) continue;
+ if ( it.data().maskWith(0xFFFF)==_source1[it.key()].maskWith(0xFFFF) ) continue;
secondInFirst = false;
}
if ( firstInSecond && secondInFirst ) return okExit(i18n("The two hex files have the same content."));