summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:07:09 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:07:09 -0600
commit66888fc1b956ac41fc1a129a28fbb0f9a5491ef4 (patch)
treebca8365c71b08c52b2fff1e86d466824a6fc787f
parent3294a2b0edca71b65173ac97558db46e21cc05cc (diff)
downloadkcmldap-66888fc1.tar.gz
kcmldap-66888fc1.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
-rw-r--r--src/ldapbonding.cpp4
-rw-r--r--src/ldapbonding.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ldapbonding.cpp b/src/ldapbonding.cpp
index c2beac0..b1a2de4 100644
--- a/src/ldapbonding.cpp
+++ b/src/ldapbonding.cpp
@@ -62,7 +62,7 @@ K_EXPORT_COMPONENT_FACTORY( kcm_ldapbonding, ldapFactory("kcmldapbonding"))
KSimpleConfig *systemconfig = 0;
LDAPConfig::LDAPConfig(TQWidget *parent, const char *name, const TQStringList&)
- : KCModule(parent, name), myAboutData(0)
+ : TDECModule(parent, name), myAboutData(0)
{
TQVBoxLayout *layout = new TQVBoxLayout(this, KDialog::marginHint(), KDialog::spacingHint());
systemconfig = new KSimpleConfig( TQString::fromLatin1( KDE_CONFDIR "/ldap/ldapconfigrc" ));
@@ -703,7 +703,7 @@ void LDAPConfig::writePAMFiles() {
}
int LDAPConfig::buttons() {
- return KCModule::Apply|KCModule::Help;
+ return TDECModule::Apply|TDECModule::Help;
}
TQString LDAPConfig::quickHelp() const
diff --git a/src/ldapbonding.h b/src/ldapbonding.h
index afdc7ff..5995b5f 100644
--- a/src/ldapbonding.h
+++ b/src/ldapbonding.h
@@ -39,7 +39,7 @@
#include <config.h>
#endif
-class LDAPConfig: public KCModule
+class LDAPConfig: public TDECModule
{
Q_OBJECT