summaryrefslogtreecommitdiffstats
path: root/kommander/widgets/wizard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kommander/widgets/wizard.cpp')
-rw-r--r--kommander/widgets/wizard.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kommander/widgets/wizard.cpp b/kommander/widgets/wizard.cpp
index 797ed009..c7932897 100644
--- a/kommander/widgets/wizard.cpp
+++ b/kommander/widgets/wizard.cpp
@@ -14,7 +14,7 @@
* *
***************************************************************************/
/* KDE INCLUDES */
-#include <kprocess.h>
+#include <tdeprocess.h>
/* QT INCLUDES */
#include <tqstring.h>
@@ -32,7 +32,7 @@
Wizard::Wizard(TQWidget *a_parent, const char *a_name, bool a_modal, int a_flags)
- : TQWizard(a_parent, a_name, a_modal, a_flags), KommanderWidget(TQT_TQOBJECT(this))
+ : TQWizard(a_parent, a_name, a_modal, a_flags), KommanderWidget(this)
{
TQStringList states;
states << "default";
@@ -41,7 +41,7 @@ Wizard::Wizard(TQWidget *a_parent, const char *a_name, bool a_modal, int a_flags
setStates(states);
setDisplayStates(states);
- connect(this, TQT_SIGNAL(helpClicked()), TQT_SLOT(runHelp()));
+ connect(this, TQ_SIGNAL(helpClicked()), TQ_SLOT(runHelp()));
}
Wizard::~Wizard()