diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 539a35866f0bac8f00e493654d4a8ec6863726e2 (patch) | |
tree | 8991e5472fe88379787cafa85542d94706bd6fa4 /conduits/vcalconduit | |
parent | 45598e35650c5806ecf2d684afeeb0da41c3ff6b (diff) | |
download | kpilot-539a35866f0bac8f00e493654d4a8ec6863726e2.tar.gz kpilot-539a35866f0bac8f00e493654d4a8ec6863726e2.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kpilot@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'conduits/vcalconduit')
-rw-r--r-- | conduits/vcalconduit/kcalRecord.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conduits/vcalconduit/kcalRecord.cc b/conduits/vcalconduit/kcalRecord.cc index e7f8c68..598866d 100644 --- a/conduits/vcalconduit/kcalRecord.cc +++ b/conduits/vcalconduit/kcalRecord.cc @@ -63,7 +63,7 @@ void KCalSync::setCategory(PilotRecordBase *de, if (de->category() != Pilot::Unfiled) { deCategory = Pilot::categoryName(&info,de->category()); - if (eventCategories.tqcontains(deCategory)) + if (eventCategories.contains(deCategory)) { // Found, so leave the category unchanged. return; @@ -86,7 +86,7 @@ void KCalSync::setCategory(PilotRecordBase *de, continue; } - if (availableHandheldCategories.tqcontains(*it)) + if (availableHandheldCategories.contains(*it)) { // Since the string is in the list of available categories, // this *can't* fail. @@ -122,7 +122,7 @@ void KCalSync::setCategory(KCal::Incidence *e, if ( Pilot::validCategory(cat) && (cat != Pilot::Unfiled)) { - if (!cats.tqcontains(newcat)) + if (!cats.contains(newcat)) { // if this event only has one category associated with it, then we can // safely assume that what we should be doing here is changing it to match |