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 /kontact/plugins/specialdates | |
parent | 41b65d69967ad0d35f8b4dd37ac63aad1cebdae9 (diff) | |
download | tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.tar.gz tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.zip |
Rename KABC namespace
Diffstat (limited to 'kontact/plugins/specialdates')
-rw-r--r-- | kontact/plugins/specialdates/sdsummarywidget.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kontact/plugins/specialdates/sdsummarywidget.cpp b/kontact/plugins/specialdates/sdsummarywidget.cpp index 8918f8c1a..376389f9c 100644 --- a/kontact/plugins/specialdates/sdsummarywidget.cpp +++ b/kontact/plugins/specialdates/sdsummarywidget.cpp @@ -69,7 +69,7 @@ class SDEntry TQString summary; TQString desc; int span; // #days in the special occassion. - KABC::Addressee addressee; + TDEABC::Addressee addressee; bool operator<( const SDEntry &entry ) const { @@ -94,7 +94,7 @@ SDSummaryWidget::SDSummaryWidget( Kontact::Plugin *plugin, TQWidget *parent, mLayout->setRowStretch( 6, 1 ); // Setup the Addressbook - KABC::StdAddressBook *ab = KABC::StdAddressBook::self( true ); + TDEABC::StdAddressBook *ab = TDEABC::StdAddressBook::self( true ); connect( ab, TQT_SIGNAL( addressBookChanged( AddressBook* ) ), this, TQT_SLOT( updateView() ) ); connect( mPlugin->core(), TQT_SIGNAL( dayChanged( const TQDate& ) ), @@ -221,7 +221,7 @@ void SDSummaryWidget::updateView() TDEIconLoader loader( "tdepim" ); - KABC::StdAddressBook *ab = KABC::StdAddressBook::self( true ); + TDEABC::StdAddressBook *ab = TDEABC::StdAddressBook::self( true ); TQValueList<SDEntry> dates; TQLabel *label = 0; @@ -231,7 +231,7 @@ void SDSummaryWidget::updateView() dateFormat().replace( 'Y', ' ' ) ); // Search for Birthdays and Anniversaries in the Addressbook - KABC::AddressBook::Iterator it; + TDEABC::AddressBook::Iterator it; for ( it = ab->begin(); it != ab->end(); ++it ) { TQDate birthday = (*it).birthday().date(); if ( birthday.isValid() && mShowBirthdaysFromKAB ) { @@ -391,7 +391,7 @@ void SDSummaryWidget::updateView() // Pixmap TQImage icon_img; TQString icon_name; - KABC::Picture pic; + TDEABC::Picture pic; switch( (*addrIt).category ) { case CategoryBirthday: icon_name = "calendarbirthday"; @@ -555,7 +555,7 @@ void SDSummaryWidget::updateView() void SDSummaryWidget::mailContact( const TQString &uid ) { - KABC::StdAddressBook *ab = KABC::StdAddressBook::self( true ); + TDEABC::StdAddressBook *ab = TDEABC::StdAddressBook::self( true ); TQString email = ab->findByUid( uid ).fullEmail(); kapp->invokeMailer( email, TQString() ); |