diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-20 16:26:45 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-20 16:26:45 -0600 |
commit | 45f3927b0ffec2599bc0e1ce361c5386474a85f4 (patch) | |
tree | 29e1842fe4d93f4e99481385a771e8bef061158b /tdeabc/vcardtool.cpp | |
parent | 04105ef07304a9358e87eff0cb1a6d6f2a725192 (diff) | |
download | tdelibs-45f3927b0ffec2599bc0e1ce361c5386474a85f4.tar.gz tdelibs-45f3927b0ffec2599bc0e1ce361c5386474a85f4.zip |
Rename KABC namespace
Diffstat (limited to 'tdeabc/vcardtool.cpp')
-rw-r--r-- | tdeabc/vcardtool.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeabc/vcardtool.cpp b/tdeabc/vcardtool.cpp index 295360a03..2dd9752ac 100644 --- a/tdeabc/vcardtool.cpp +++ b/tdeabc/vcardtool.cpp @@ -30,7 +30,7 @@ #include "vcardtool.h" -using namespace KABC; +using namespace TDEABC; static bool needsEncoding( const TQString &value ) { @@ -459,8 +459,8 @@ Addressee::List VCardTool::parseVCards( const TQString& vcard ) type += mAddressTypeMap[ (*it).lower() ]; bool available = false; - KABC::Address::List addressList = addr.addresses(); - KABC::Address::List::Iterator it; + TDEABC::Address::List addressList = addr.addresses(); + TDEABC::Address::List::Iterator it; for ( it = addressList.begin(); it != addressList.end(); ++it ) { if ( (*it).type() == type ) { (*it).setLabel( (*lineIt).value().asString() ); @@ -471,7 +471,7 @@ Addressee::List VCardTool::parseVCards( const TQString& vcard ) } if ( !available ) { // a standalone LABEL tag - KABC::Address address( type ); + TDEABC::Address address( type ); address.setLabel( (*lineIt).value().asString() ); addr.insertAddress( address ); } |