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 /kode | |
parent | 41b65d69967ad0d35f8b4dd37ac63aad1cebdae9 (diff) | |
download | tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.tar.gz tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.zip |
Rename KABC namespace
Diffstat (limited to 'kode')
-rw-r--r-- | kode/kodemain.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kode/kodemain.cpp b/kode/kodemain.cpp index e91be0c86..ab332c2bf 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; |