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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kommander/widgets/wizard.cpp b/kommander/widgets/wizard.cpp
index 797ed009..0ae537de 100644
--- a/kommander/widgets/wizard.cpp
+++ b/kommander/widgets/wizard.cpp
@@ -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()