summaryrefslogtreecommitdiffstats
path: root/kode/kodemain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kode/kodemain.cpp')
-rw-r--r--kode/kodemain.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kode/kodemain.cpp b/kode/kodemain.cpp
index e91be0c8..ab332c2b 100644
--- a/kode/kodemain.cpp
+++ b/kode/kodemain.cpp
@@ -366,13 +366,13 @@ int create( TDECmdLineArgs *args )
TQString authorEmail = args->getOption( "author-email" );
TQString authorName;
- KABC::Addressee a;
+ TDEABC::Addressee a;
if ( authorEmail.isEmpty() ) {
- a = KABC::StdAddressBook::self()->whoAmI();
+ a = TDEABC::StdAddressBook::self()->whoAmI();
authorEmail = a.preferredEmail();
} else {
- KABC::Addressee::List as =
- KABC::StdAddressBook::self()->findByEmail( authorEmail );
+ TDEABC::Addressee::List as =
+ TDEABC::StdAddressBook::self()->findByEmail( authorEmail );
if ( as.isEmpty() ) {
kdDebug() << "Unable to find '" << authorEmail << "' in address book."
<< endl;