diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-31 16:11:41 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-31 16:11:41 -0500 |
commit | ebe1ee0677547ebef722ef0523cc8ef1e0601657 (patch) | |
tree | 69f1fe14f92ebf0d636f827bb0690d6ae4feb16a /src/realmwizard.h | |
parent | 15ed3f5aa021307cadfdd59bcf0a4f51008cb0ef (diff) | |
download | kcmldapcontroller-ebe1ee0677547ebef722ef0523cc8ef1e0601657.tar.gz kcmldapcontroller-ebe1ee0677547ebef722ef0523cc8ef1e0601657.zip |
Add GUI elements to wizard
Diffstat (limited to 'src/realmwizard.h')
-rw-r--r-- | src/realmwizard.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/realmwizard.h b/src/realmwizard.h index 3c0727f..111019f 100644 --- a/src/realmwizard.h +++ b/src/realmwizard.h @@ -28,6 +28,8 @@ #include <kapplication.h> #include <kwizard.h> +#include "ldapcontroller.h" + /** prototypes */ class KLanguageCombo; class RealmIntroPage; @@ -39,7 +41,7 @@ class RealmWizard : public KWizard { Q_OBJECT public: /** construtor */ - RealmWizard(TQWidget* parent=0, const char *name=0); + RealmWizard(LDAPController* controller, TQWidget* parent=0, const char *name=0); /** destructor */ ~RealmWizard(); @@ -69,6 +71,7 @@ private: RealmConfigPage* realmpage; RealmFinishPage* finishpage; bool realm_dirty; + LDAPController* m_controller; protected: // Protected methods // the close button on the titlebar sets e->accept() which we don't want. |