summaryrefslogtreecommitdiffstats
path: root/konversation/src/linkaddressbook/linkaddressbookui.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:17:34 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:17:34 -0600
commited060e413241e381ab4971a79e4b97b54c4e3cbf (patch)
treecbc0d36b977557d312b31bbb8e858f16a27b0d0e /konversation/src/linkaddressbook/linkaddressbookui.cpp
parent65b54c8b5112a35c3d46a133d426a909bed2592d (diff)
downloadkonversation-ed060e413241e381ab4971a79e4b97b54c4e3cbf.tar.gz
konversation-ed060e413241e381ab4971a79e4b97b54c4e3cbf.zip
Rename KABC namespace
Diffstat (limited to 'konversation/src/linkaddressbook/linkaddressbookui.cpp')
-rw-r--r--konversation/src/linkaddressbook/linkaddressbookui.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/konversation/src/linkaddressbook/linkaddressbookui.cpp b/konversation/src/linkaddressbook/linkaddressbookui.cpp
index 864dcfd..709367e 100644
--- a/konversation/src/linkaddressbook/linkaddressbookui.cpp
+++ b/konversation/src/linkaddressbook/linkaddressbookui.cpp
@@ -104,7 +104,7 @@ void LinkAddressbookUI::slotLoadAddressees()
TQString realname;
int num_contacts_with_nick=0; //There shouldn't be more than 1 contact with this irc nick. Warn the user if there is.
- KABC::AddressBook::Iterator it;
+ TDEABC::AddressBook::Iterator it;
for( it = m_addressBook->begin(); it != m_addressBook->end(); ++it )
if(Konversation::Addressbook::self()->hasNick(*it, m_lower_ircnick, m_servername, m_servergroup))
{
@@ -135,7 +135,7 @@ void LinkAddressbookUI::slotAddAddresseeClicked()
if ( !addresseeName.isEmpty() )
{
- KABC::Addressee addr;
+ TDEABC::Addressee addr;
addr.setNameFromString( addresseeName );
m_addressBook->insertAddressee(addr);
Konversation::Addressbook::self()->saveTicket();
@@ -159,7 +159,7 @@ void LinkAddressbookUI::slotOk()
AddresseeItem *item = 0L;
item = static_cast<AddresseeItem *>( m_mainWidget->addresseeListView->selectedItem() );
- KABC::Addressee addr;
+ TDEABC::Addressee addr;
if ( item )
{