summaryrefslogtreecommitdiffstats
path: root/libkcal/calhelper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkcal/calhelper.cpp')
-rw-r--r--libkcal/calhelper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libkcal/calhelper.cpp b/libkcal/calhelper.cpp
index cae5c102..ebdb9de9 100644
--- a/libkcal/calhelper.cpp
+++ b/libkcal/calhelper.cpp
@@ -45,7 +45,7 @@ bool CalHelper::isMyKolabIncidence( Calendar *calendar, Incidence *incidence )
CalendarResourceManager::Iterator it;
for ( it = manager->begin(); it != manager->end(); ++it ) {
TQString subRes = (*it)->subresourceIdentifier( incidence );
- if ( !subRes.isEmpty() && !subRes.contains( "/.INBOX.directory/" ) ) {
+ if ( !subRes.isEmpty() && !subRes.tqcontains( "/.INBOX.directory/" ) ) {
return false;
}
}
@@ -126,7 +126,7 @@ bool CalHelper::hasMyWritableEventsFolders( const TQString &family )
if ( (*it)->type() == "imap" || (*it)->type() == "kolab" ) {
if ( (*it)->subresourceType( ( *subIt ) ) == "todo" ||
(*it)->subresourceType( ( *subIt ) ) == "journal" ||
- !(*subIt).contains( "/.INBOX.directory/" ) ) {
+ !(*subIt).tqcontains( "/.INBOX.directory/" ) ) {
continue;
}
}