diff options
Diffstat (limited to 'tests/importaddresses.cc')
-rw-r--r-- | tests/importaddresses.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/importaddresses.cc b/tests/importaddresses.cc index 82ab5ae..681aa0d 100644 --- a/tests/importaddresses.cc +++ b/tests/importaddresses.cc @@ -83,8 +83,8 @@ int main(int argc, char **argv) return 1; } - KABC::ResourceFile *file = new KABC::ResourceFile( addressfile ); - KABC::AddressBook book; + TDEABC::ResourceFile *file = new TDEABC::ResourceFile( addressfile ); + TDEABC::AddressBook book; book.addResource( file ); if (!book.load()) { @@ -104,10 +104,10 @@ int main(int argc, char **argv) kdDebug() << "# Printing address book." << endl; unsigned int count = 1; - KABC::AddressBook::ConstIterator it = book.begin(); + TDEABC::AddressBook::ConstIterator it = book.begin(); while (it != book.end()) { - const KABC::Addressee &a = *it; + const TDEABC::Addressee &a = *it; kdDebug() << "# Entry #" << count << endl; kdDebug() << "# " << a.name() << endl; kdDebug() << "# " << a.formattedName() << endl; |