diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ldapcontroller.cpp | 4 | ||||
-rw-r--r-- | src/ldapcontroller.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/ldapcontroller.cpp b/src/ldapcontroller.cpp index 92832fa..55b385a 100644 --- a/src/ldapcontroller.cpp +++ b/src/ldapcontroller.cpp @@ -90,9 +90,9 @@ LDAPController::LDAPController(TQWidget *parent, const char *name, const TQStrin m_systemconfig = new KSimpleConfig( TQString::fromLatin1( KDE_CONFDIR "/ldap/ldapconfigrc" )); m_systemconfig->setFileWriteMode(S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); - KAboutData* about = new KAboutData("ldapcontroller", I18N_NOOP("TDE LDAP Controller"), "0.1", + TDEAboutData* about = new TDEAboutData("ldapcontroller", I18N_NOOP("TDE LDAP Controller"), "0.1", I18N_NOOP("TDE LDAP Controller Control Panel Module"), - KAboutData::License_GPL, + TDEAboutData::License_GPL, I18N_NOOP("(c) 2012 Timothy Pearson"), 0, 0); about->addAuthor("Timothy Pearson", 0, "[email protected]"); diff --git a/src/ldapcontroller.h b/src/ldapcontroller.h index 6aed18d..40f17f7 100644 --- a/src/ldapcontroller.h +++ b/src/ldapcontroller.h @@ -57,7 +57,7 @@ class LDAPController: public KCModule virtual void defaults(); virtual int buttons(); virtual TQString quickHelp() const; - virtual const KAboutData *aboutData() const { return myAboutData; }; + virtual const TDEAboutData *aboutData() const { return myAboutData; }; public: int createNewLDAPRealm(TQWidget* dialogparent, LDAPRealmConfig realmconfig, TQString adminUserName, TQString adminGroupName, TQString machineAdminGroupName, TQString standardUserGroupName, const char * adminPassword, TQString rootUserName, const char * rootPassword, TQString adminRealm, LDAPCertConfig certinfo, TQString *errstr); @@ -96,7 +96,7 @@ class LDAPController: public KCModule int uploadKerberosCAKeyFileToLDAP(LDAPManager* ldap_mgr, TQString* errstr=0); private: - KAboutData *myAboutData; + TDEAboutData *myAboutData; LDAPControllerConfigBase *m_base; KSimpleConfig *m_systemconfig; |