diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:09:26 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:09:26 +0900 |
commit | 9a450e87a2c2bd19485e2fa29762261781159dbb (patch) | |
tree | 4b4527d46504c402f7416c7060075079a3370966 /src | |
parent | 9a4ef9d54a7db43e49b46e1d164160963811f2fd (diff) | |
download | kcmldapmanager-master.tar.gz kcmldapmanager-master.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src')
-rw-r--r-- | src/ldapmgr.cpp | 6 | ||||
-rw-r--r-- | src/ldapmgr.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/ldapmgr.cpp b/src/ldapmgr.cpp index 45d5091..ede94e4 100644 --- a/src/ldapmgr.cpp +++ b/src/ldapmgr.cpp @@ -24,7 +24,7 @@ #include <tdelocale.h> #include <tdeglobal.h> #include <tdeparts/genericfactory.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <tdeglobalsettings.h> #include <tdestandarddirs.h> #include <kurlrequester.h> @@ -34,7 +34,7 @@ #include <tdeio/job.h> #include <tqdir.h> #include <tqheader.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <kcombobox.h> #include <tdemessagebox.h> #include <klineedit.h> @@ -62,7 +62,7 @@ K_EXPORT_COMPONENT_FACTORY( kcm_ldapmanager, LDAPConfigFactory("kcmldapmanager") LDAPConfig::LDAPConfig(TQWidget *parent, const char *name, const TQStringList&) : TDECModule(parent, name), myAboutData(0), m_ldapmanager(0) { - m_systemconfig = new KSimpleConfig( TQString::fromLatin1( KDE_CONFDIR "/ldap/ldapconfigrc" )); + m_systemconfig = new TDESimpleConfig( TQString::fromLatin1( KDE_CONFDIR "/ldap/ldapconfigrc" )); TQVBoxLayout *layout = new TQVBoxLayout(this, KDialog::marginHint(), KDialog::spacingHint()); base = new LDAPConfigBase(this); diff --git a/src/ldapmgr.h b/src/ldapmgr.h index de65cc0..132ce4c 100644 --- a/src/ldapmgr.h +++ b/src/ldapmgr.h @@ -33,7 +33,7 @@ #include <libtdeldap.h> #include "ldapconfigbase.h" -class KSimpleConfig; +class TDESimpleConfig; class LDAPConfig: public TDECModule { @@ -103,7 +103,7 @@ class LDAPConfig: public TDECModule TDEAboutData *myAboutData; LDAPConfigBase *base; - KSimpleConfig *m_systemconfig; + TDESimpleConfig *m_systemconfig; LDAPManager *m_ldapmanager; LDAPUserInfoList m_userInfoList; |