summaryrefslogtreecommitdiffstats
path: root/bibletime/backend/ctextrendering.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/backend/ctextrendering.cpp')
-rw-r--r--bibletime/backend/ctextrendering.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/bibletime/backend/ctextrendering.cpp b/bibletime/backend/ctextrendering.cpp
index 7ca4416..bd5b06f 100644
--- a/bibletime/backend/ctextrendering.cpp
+++ b/bibletime/backend/ctextrendering.cpp
@@ -172,7 +172,7 @@ ListCSwordModuleInfo CTextRendering::KeyTree::collectModules() const {
/*ToDo: Use the const iterators as soon as we use TQt > 3.1
const ListCSwordModuleInfo::const_iterator c_end = childMods.end();
for (ListCSwordModuleInfo::const_iterator c_it = childMods.constBegin(); c_it != c_end; ++c_it) {
- if (!modules.tqcontains(*c_it)) {
+ if (!modules.contains(*c_it)) {
modules.append(*c_it);
}
}*/
@@ -181,7 +181,7 @@ ListCSwordModuleInfo CTextRendering::KeyTree::collectModules() const {
ListCSwordModuleInfo::iterator end_it = childMods.end();
for (ListCSwordModuleInfo::iterator it(childMods.begin()); it != end_it; ++it) {
- if (!modules.tqcontains(*it)) {
+ if (!modules.contains(*it)) {
modules.append(*it);
}
}