summaryrefslogtreecommitdiffstats
path: root/kmail/recipientspicker.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit4c6f8d69e2d1501837affb472c4eb8fec4462240 (patch)
tree766a8ad7939fcf3eec534184c36bd0e0f80489e2 /kmail/recipientspicker.cpp
parent469cc56a805bd3d6940d54adbef554877c29853c (diff)
downloadtdepim-4c6f8d69e2d1501837affb472c4eb8fec4462240.tar.gz
tdepim-4c6f8d69e2d1501837affb472c4eb8fec4462240.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmail/recipientspicker.cpp')
-rw-r--r--kmail/recipientspicker.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmail/recipientspicker.cpp b/kmail/recipientspicker.cpp
index 0bbacbea..11b2cec6 100644
--- a/kmail/recipientspicker.cpp
+++ b/kmail/recipientspicker.cpp
@@ -294,13 +294,13 @@ RecipientItem::List RecipientsCollection::items() const
bool RecipientsCollection::hasEquivalentItem( RecipientItem *item ) const
{
- return mKeyMap.tqfind( item->key() ) != mKeyMap.end();
+ return mKeyMap.find( item->key() ) != mKeyMap.end();
}
RecipientItem * RecipientsCollection::getEquivalentItem( RecipientItem *item) const
{
TQMap<TQString, RecipientItem *>::ConstIterator it;
- it = mKeyMap.tqfind( item->key() );
+ it = mKeyMap.find( item->key() );
if ( it == mKeyMap.end() )
return 0;
return (*it);
@@ -505,7 +505,7 @@ void RecipientsPicker::insertAddressBook( KABC::AddressBook *addressbook )
item->setAddressee( *it, *it3 );
TQMap<KABC::Resource *,RecipientsCollection *>::ConstIterator collIt;
- collIt = collectionMap.tqfind( it->resource() );
+ collIt = collectionMap.find( it->resource() );
if ( collIt != collectionMap.end() ) {
(*collIt)->addItem( item );
}
@@ -514,7 +514,7 @@ void RecipientsPicker::insertAddressBook( KABC::AddressBook *addressbook )
TQStringList::ConstIterator catIt;
for( catIt = categories.begin(); catIt != categories.end(); ++catIt ) {
TQMap<TQString, RecipientsCollection *>::ConstIterator catMapIt;
- catMapIt = categoryMap.tqfind( *catIt );
+ catMapIt = categoryMap.find( *catIt );
RecipientsCollection *collection;
if ( catMapIt == categoryMap.end() ) {
collection = new RecipientsCollection( *catIt );