diff options
Diffstat (limited to 'src/ldapbonding.cpp')
-rw-r--r-- | src/ldapbonding.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ldapbonding.cpp b/src/ldapbonding.cpp index 60859f5..0e7e053 100644 --- a/src/ldapbonding.cpp +++ b/src/ldapbonding.cpp @@ -27,7 +27,7 @@ #include <tdeglobal.h> #include <kcombobox.h> #include <tdeparts/genericfactory.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <tdeglobalsettings.h> #include <tdestandarddirs.h> #include <kurlrequester.h> @@ -58,13 +58,13 @@ typedef KGenericFactory<LDAPConfig, TQWidget> ldapFactory; K_EXPORT_COMPONENT_FACTORY( kcm_ldapbonding, ldapFactory("kcmldapbonding")) -KSimpleConfig *systemconfig = 0; +TDESimpleConfig *systemconfig = 0; LDAPConfig::LDAPConfig(TQWidget *parent, const char *name, const TQStringList&) : TDECModule(parent, name), myAboutData(0) { TQVBoxLayout *layout = new TQVBoxLayout(this, KDialog::marginHint(), KDialog::spacingHint()); - systemconfig = new KSimpleConfig( TQString::fromLatin1( KDE_CONFDIR "/ldap/ldapconfigrc" )); + systemconfig = new TDESimpleConfig( TQString::fromLatin1( KDE_CONFDIR "/ldap/ldapconfigrc" )); systemconfig->setFileWriteMode(S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); TDEAboutData* about = new TDEAboutData("ldap", I18N_NOOP("TDE LDAP Manager"), "0.1", |