summaryrefslogtreecommitdiffstats
path: root/kontact/plugins/specialdates/sdsummarywidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kontact/plugins/specialdates/sdsummarywidget.cpp')
-rw-r--r--kontact/plugins/specialdates/sdsummarywidget.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kontact/plugins/specialdates/sdsummarywidget.cpp b/kontact/plugins/specialdates/sdsummarywidget.cpp
index 8918f8c1..376389f9 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() );