summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:07:13 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:07:13 -0600
commit2c48a779bdae10697b43c37d5bc6e19f4483c35c (patch)
treef71c6ae5f575c2d13d11d5b071fd8c8bcee84451 /src
parentb58409e24446644a7ee47960d373e3ca6d59b86e (diff)
downloadkcmldapmanager-2c48a779bdae10697b43c37d5bc6e19f4483c35c.tar.gz
kcmldapmanager-2c48a779bdae10697b43c37d5bc6e19f4483c35c.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src')
-rw-r--r--src/ldapmgr.cpp4
-rw-r--r--src/ldapmgr.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ldapmgr.cpp b/src/ldapmgr.cpp
index 674fe17..a0fd164 100644
--- a/src/ldapmgr.cpp
+++ b/src/ldapmgr.cpp
@@ -59,7 +59,7 @@ typedef KGenericFactory<LDAPConfig, TQWidget> LDAPConfigFactory;
K_EXPORT_COMPONENT_FACTORY( kcm_ldapmanager, LDAPConfigFactory("kcmldapmanager"))
LDAPConfig::LDAPConfig(TQWidget *parent, const char *name, const TQStringList&)
- : KCModule(parent, name), myAboutData(0), m_ldapmanager(0)
+ : TDECModule(parent, name), myAboutData(0), m_ldapmanager(0)
{
m_systemconfig = new KSimpleConfig( TQString::fromLatin1( KDE_CONFDIR "/ldap/ldapconfigrc" ));
@@ -899,7 +899,7 @@ int LDAPConfig::setPasswordForUser(LDAPUserInfo user, TQString *errstr) {
}
int LDAPConfig::buttons() {
- return KCModule::Apply|KCModule::Help;
+ return TDECModule::Apply|TDECModule::Help;
}
TQString LDAPConfig::quickHelp() const
diff --git a/src/ldapmgr.h b/src/ldapmgr.h
index e861279..2af5602 100644
--- a/src/ldapmgr.h
+++ b/src/ldapmgr.h
@@ -35,7 +35,7 @@
class KSimpleConfig;
-class LDAPConfig: public KCModule
+class LDAPConfig: public TDECModule
{
Q_OBJECT