summaryrefslogtreecommitdiffstats
path: root/kbugbuster/backend/bugserver.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
commit9150603ad32928e9c514c0492a8518b742d82ac3 (patch)
tree6e3f83e2b94146bb42eed57eb6dd8f2fb0369e6f /kbugbuster/backend/bugserver.cpp
parent6b126a99d5eecef5cb96589ed5c2e522bcb06ca9 (diff)
downloadtdesdk-9150603ad32928e9c514c0492a8518b742d82ac3.tar.gz
tdesdk-9150603ad32928e9c514c0492a8518b742d82ac3.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/kdesdk@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbugbuster/backend/bugserver.cpp')
-rw-r--r--kbugbuster/backend/bugserver.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kbugbuster/backend/bugserver.cpp b/kbugbuster/backend/bugserver.cpp
index a5d31bbf..37089623 100644
--- a/kbugbuster/backend/bugserver.cpp
+++ b/kbugbuster/backend/bugserver.cpp
@@ -270,13 +270,13 @@ void BugServer::sendCommands( MailSender *mailer, const TQString &senderName,
}
if (!bug.isNull()) {
mCommandsFile->deleteGroup( bug.number(), true ); // done, remove command
- mCache->tqinvalidateBugDetails( bug );
+ mCache->invalidateBugDetails( bug );
if ( !pkg.isNull() ) {
- mCache->tqinvalidateBugList( pkg, TQString() ); // the status of the bug comes from the buglist...
+ mCache->invalidateBugList( pkg, TQString() ); // the status of the bug comes from the buglist...
TQStringList::ConstIterator it2;
for (it2 = pkg.components().begin();it2 != pkg.components().end();++it2) {
- mCache->tqinvalidateBugList( pkg, (*it2) ); // the status of the bug comes from the buglist...
+ mCache->invalidateBugList( pkg, (*it2) ); // the status of the bug comes from the buglist...
}
}
}