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/kmail/kmail_plugin.cpp | |
parent | 41b65d69967ad0d35f8b4dd37ac63aad1cebdae9 (diff) | |
download | tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.tar.gz tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.zip |
Rename KABC namespace
Diffstat (limited to 'kontact/plugins/kmail/kmail_plugin.cpp')
-rw-r--r-- | kontact/plugins/kmail/kmail_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kontact/plugins/kmail/kmail_plugin.cpp b/kontact/plugins/kmail/kmail_plugin.cpp index 1fa5fc9fc..faf9f5f1c 100644 --- a/kontact/plugins/kmail/kmail_plugin.cpp +++ b/kontact/plugins/kmail/kmail_plugin.cpp @@ -84,7 +84,7 @@ void KMailPlugin::processDropEvent( TQDropEvent * de ) { kdDebug() << k_funcinfo << endl; CalendarLocal cal( TQString::fromLatin1("UTC") ); - KABC::Addressee::List list; + TDEABC::Addressee::List list; if ( VCalDrag::decode( de, &cal ) || ICalDrag::decode( de, &cal ) ) { KTempFile tmp( locateLocal( "tmp", "incidences-" ), ".ics" ); @@ -92,7 +92,7 @@ void KMailPlugin::processDropEvent( TQDropEvent * de ) openComposer( KURL::fromPathOrURL( tmp.name() ) ); } else if ( KVCardDrag::decode( de, list ) ) { - KABC::Addressee::List::Iterator it; + TDEABC::Addressee::List::Iterator it; TQStringList to; for ( it = list.begin(); it != list.end(); ++it ) { to.append( ( *it ).fullEmail() ); |