summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:17:47 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:17:47 -0600
commitc6a40717d8212170a7e522a544d9046ebabb102e (patch)
treedde502cfd0638233b0b43fbd1841fd516e1bb149 /tests
parentc8376d8f8453cad88dab7306888c9a2fef7b4da7 (diff)
downloadkpilot-c6a40717d8212170a7e522a544d9046ebabb102e.tar.gz
kpilot-c6a40717d8212170a7e522a544d9046ebabb102e.zip
Rename KABC namespace
Diffstat (limited to 'tests')
-rw-r--r--tests/importaddresses.cc8
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;