summaryrefslogtreecommitdiffstats
path: root/tdefile-plugins
diff options
context:
space:
mode:
Diffstat (limited to 'tdefile-plugins')
-rw-r--r--tdefile-plugins/vcf/Makefile.am2
-rw-r--r--tdefile-plugins/vcf/tdefile_vcf.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/tdefile-plugins/vcf/Makefile.am b/tdefile-plugins/vcf/Makefile.am
index 61b306d5..fd21fb80 100644
--- a/tdefile-plugins/vcf/Makefile.am
+++ b/tdefile-plugins/vcf/Makefile.am
@@ -10,7 +10,7 @@ kde_module_LTLIBRARIES = tdefile_vcf.la
tdefile_vcf_la_SOURCES = tdefile_vcf.cpp
tdefile_vcf_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) $(LIB_QT) -ltdecore
-tdefile_vcf_la_LIBADD = $(LIB_KSYCOCA) $(LIB_KABC)
+tdefile_vcf_la_LIBADD = $(LIB_KSYCOCA) $(LIB_TDEABC)
# let automoc handle all of the meta source files (moc)
METASOURCES = AUTO
diff --git a/tdefile-plugins/vcf/tdefile_vcf.cpp b/tdefile-plugins/vcf/tdefile_vcf.cpp
index 3b70960d..c7596279 100644
--- a/tdefile-plugins/vcf/tdefile_vcf.cpp
+++ b/tdefile-plugins/vcf/tdefile_vcf.cpp
@@ -67,11 +67,11 @@ bool KVcfPlugin::readInfo( KFileMetaInfo& info, uint /*what*/ )
TQString contents = file.readAll();
file.close();
- KABC::VCardConverter converter;
+ TDEABC::VCardConverter converter;
#if defined(KABC_VCARD_ENCODING_FIX)
- KABC::Addressee addr = converter.parseVCardRaw( contents.utf8() );
+ TDEABC::Addressee addr = converter.parseVCardRaw( contents.utf8() );
#else
- KABC::Addressee addr = converter.parseVCard( contents );
+ TDEABC::Addressee addr = converter.parseVCard( contents );
#endif
KFileMetaInfoGroup group = appendGroup(info, "Technical");
@@ -87,7 +87,7 @@ bool KVcfPlugin::readInfo( KFileMetaInfo& info, uint /*what*/ )
if ( ! addr.preferredEmail().isEmpty() )
appendItem(group, "Email", addr.preferredEmail());
- KABC::PhoneNumber::List pnList = addr.phoneNumbers();
+ TDEABC::PhoneNumber::List pnList = addr.phoneNumbers();
TQStringList phoneNumbers;
for (unsigned int no=0; no<pnList.count(); ++no) {
TQString pn = pnList[no].number().simplifyWhiteSpace();