summaryrefslogtreecommitdiffstats
path: root/kode/kodemain.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:27:27 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:27:27 -0600
commit94273bcb909fac42ef9427e3d8a614cab8c29c66 (patch)
tree91b99186971ecb475db3ca41b1b12df24029e389 /kode/kodemain.cpp
parent41b65d69967ad0d35f8b4dd37ac63aad1cebdae9 (diff)
downloadtdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.tar.gz
tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.zip
Rename KABC namespace
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;