summaryrefslogtreecommitdiffstats
path: root/src/kile/kilewizard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kile/kilewizard.cpp')
-rw-r--r--src/kile/kilewizard.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/kile/kilewizard.cpp b/src/kile/kilewizard.cpp
new file mode 100644
index 0000000..6f26ad3
--- /dev/null
+++ b/src/kile/kilewizard.cpp
@@ -0,0 +1,29 @@
+/***************************************************************************
+ begin : Tue Dec 23 2003
+ copyright : (C) 2003 Jeroen Wijnhout
+ email : Jeroen.Wijnhout@kdemail.net
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#include "kilewizard.h"
+
+namespace KileDialog
+{
+ Wizard::Wizard(KConfig *config, QWidget *parent, const char *name, const QString &caption) :
+ KDialogBase(parent,name,true,caption,KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok, true),
+ m_td(QString::null, QString::null, QString::null, 0, 0, QString::null),
+ m_config(config)
+ {
+ }
+
+ Wizard::~Wizard()
+ {}
+}