diff options
author | Timothy Pearson <[email protected]> | 2013-02-20 16:27:27 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-20 16:27:27 -0600 |
commit | 94273bcb909fac42ef9427e3d8a614cab8c29c66 (patch) | |
tree | 91b99186971ecb475db3ca41b1b12df24029e389 /kaddressbook/views/contactlistview.cpp | |
parent | 41b65d69967ad0d35f8b4dd37ac63aad1cebdae9 (diff) | |
download | tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.tar.gz tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.zip |
Rename KABC namespace
Diffstat (limited to 'kaddressbook/views/contactlistview.cpp')
-rw-r--r-- | kaddressbook/views/contactlistview.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kaddressbook/views/contactlistview.cpp b/kaddressbook/views/contactlistview.cpp index 0d7942f95..3a01974bc 100644 --- a/kaddressbook/views/contactlistview.cpp +++ b/kaddressbook/views/contactlistview.cpp @@ -78,7 +78,7 @@ void DynamicTip::maybeTip( const TQPoint &pos ) //kdDebug(5720) << "Tip rec: " << r.x() << "," << r.y() << "," << r.width() // << "," << r.height() << endl; - KABC::Addressee a = plvi->addressee(); + TDEABC::Addressee a = plvi->addressee(); if (a.isEmpty()) return; @@ -146,10 +146,10 @@ void DynamicTip::maybeTip( const TQPoint &pos ) /////////////////////////// // ContactListViewItem Methods -ContactListViewItem::ContactListViewItem(const KABC::Addressee &a, +ContactListViewItem::ContactListViewItem(const TDEABC::Addressee &a, ContactListView *parent, - KABC::AddressBook *doc, - const KABC::Field::List &fields, + TDEABC::AddressBook *doc, + const TDEABC::Field::List &fields, KIMProxy *proxy ) : TDEListViewItem(parent), mAddressee(a), mFields( fields ), parentListView( parent ), mDocument(doc), mIMProxy( proxy ) @@ -235,9 +235,9 @@ void ContactListViewItem::refresh() setPixmap( parentListView->imColumn(), TQPixmap() ); } - KABC::Field::List::ConstIterator it; + TDEABC::Field::List::ConstIterator it; for ( it = mFields.begin(); it != mFields.end(); ++it ) { - if ( (*it)->label() == KABC::Addressee::birthdayLabel() ) { + if ( (*it)->label() == TDEABC::Addressee::birthdayLabel() ) { TQDate date = mAddressee.birthday().date(); if ( date.isValid() ) setText( i++, TDEGlobal::locale()->formatDate( date, true ) ); @@ -257,7 +257,7 @@ void ContactListViewItem::setHasIM( bool hasIM ) // ContactListView ContactListView::ContactListView(KAddressBookTableView *view, - KABC::AddressBook* /* doc */, + TDEABC::AddressBook* /* doc */, TQWidget *parent, const char *name ) : TDEListView( parent, name ), |