diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-20 16:27:27 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-20 16:27:27 -0600 |
commit | 94273bcb909fac42ef9427e3d8a614cab8c29c66 (patch) | |
tree | 91b99186971ecb475db3ca41b1b12df24029e389 /kmail/kmcommands.cpp | |
parent | 41b65d69967ad0d35f8b4dd37ac63aad1cebdae9 (diff) | |
download | tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.tar.gz tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.zip |
Rename KABC namespace
Diffstat (limited to 'kmail/kmcommands.cpp')
-rw-r--r-- | kmail/kmcommands.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmail/kmcommands.cpp b/kmail/kmcommands.cpp index 8005ca838..e3be3b119 100644 --- a/kmail/kmcommands.cpp +++ b/kmail/kmcommands.cpp @@ -2986,8 +2986,8 @@ KMCommand::Result KMIMChatCommand::execute() kdDebug( 5006 ) << k_funcinfo << " URL is: " << mUrl << endl; TQString addr = KMMessage::decodeMailtoUrl( mUrl.path() ); // find UID for mail address - KABC::AddressBook *addressBook = KABC::StdAddressBook::self( true ); - KABC::AddresseeList addressees = addressBook->findByEmail( KPIM::getEmailAddress( addr ) ) ; + TDEABC::AddressBook *addressBook = TDEABC::StdAddressBook::self( true ); + TDEABC::AddresseeList addressees = addressBook->findByEmail( KPIM::getEmailAddress( addr ) ) ; // start chat if( addressees.count() == 1 ) { @@ -3005,8 +3005,8 @@ KMCommand::Result KMIMChatCommand::execute() { apology = i18n( "More than one Address Book entry uses this email address:\n %1\n it is not possible to determine who to chat with." ); TQStringList nameList; - KABC::AddresseeList::const_iterator it = addressees.begin(); - KABC::AddresseeList::const_iterator end = addressees.end(); + TDEABC::AddresseeList::const_iterator it = addressees.begin(); + TDEABC::AddresseeList::const_iterator end = addressees.end(); for ( ; it != end; ++it ) { nameList.append( (*it).realName() ); |