summaryrefslogtreecommitdiffstats
path: root/konq-plugins
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:23:57 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:23:57 -0600
commitf17b14a741f556e1097f9b077abb0f57a61af942 (patch)
treedb142f8b096f7fa4c71aa8d42ace371c9dcd4600 /konq-plugins
parent3abd4a87cd88f0e301aecd33799a4989e3ef10be (diff)
downloadtdeaddons-f17b14a741f556e1097f9b077abb0f57a61af942.tar.gz
tdeaddons-f17b14a741f556e1097f9b077abb0f57a61af942.zip
Rename KABC namespace
Diffstat (limited to 'konq-plugins')
-rw-r--r--konq-plugins/kuick/Makefile.am2
-rw-r--r--konq-plugins/kuick/kimcontactmenu.cpp2
-rw-r--r--konq-plugins/kuick/kimcontactmenu.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/konq-plugins/kuick/Makefile.am b/konq-plugins/kuick/Makefile.am
index 1e520bc..34ef51e 100644
--- a/konq-plugins/kuick/Makefile.am
+++ b/konq-plugins/kuick/Makefile.am
@@ -9,7 +9,7 @@ kde_module_LTLIBRARIES = libkuickplugin.la
# This is all standard. Remove the LIB_TDEHTML reference if you are not
# using the TDEHTML Part
libkuickplugin_la_SOURCES = kuick_plugin.cpp kdirmenu.cpp kmetamenu.cpp kimcontactmenu.cpp
-libkuickplugin_la_LIBADD = $(LIB_KABC) -ltdeimproxy -lkonq
+libkuickplugin_la_LIBADD = $(LIB_TDEABC) -ltdeimproxy -lkonq
libkuickplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
pluginsdir = $(kde_servicesdir)
diff --git a/konq-plugins/kuick/kimcontactmenu.cpp b/konq-plugins/kuick/kimcontactmenu.cpp
index 43abe10..93008a6 100644
--- a/konq-plugins/kuick/kimcontactmenu.cpp
+++ b/konq-plugins/kuick/kimcontactmenu.cpp
@@ -38,7 +38,7 @@ KIMContactMenu::KIMContactMenu( TQWidget *parent, KIMProxy *proxy )
: TQPopupMenu( parent), mProxy( proxy )
{
#ifdef KIMCONTACTS_USE_KABC
- m_addressBook = KABC::StdAddressBook::self( false );
+ m_addressBook = TDEABC::StdAddressBook::self( false );
#endif
connect( this, TQT_SIGNAL( activated( int ) ), TQT_SLOT( slotItemActivated( int ) ) );
connect( this, TQT_SIGNAL( aboutToShow( ) ), this, TQT_SLOT( slotAboutToShow( ) ) );
diff --git a/konq-plugins/kuick/kimcontactmenu.h b/konq-plugins/kuick/kimcontactmenu.h
index 8bb72f5..b9bb351 100644
--- a/konq-plugins/kuick/kimcontactmenu.h
+++ b/konq-plugins/kuick/kimcontactmenu.h
@@ -27,7 +27,7 @@
#include <tqstringlist.h>
class KIMProxy;
-namespace KABC {
+namespace TDEABC {
class AddressBook;
}
@@ -49,7 +49,7 @@ signals:
protected:
KIMProxy *mProxy;
TQStringList mContacts;
- KABC::AddressBook* m_addressBook;
+ TDEABC::AddressBook* m_addressBook;
};
#endif