diff options
Diffstat (limited to 'khelpcenter')
-rw-r--r-- | khelpcenter/view.cpp | 4 | ||||
-rw-r--r-- | khelpcenter/view.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/khelpcenter/view.cpp b/khelpcenter/view.cpp index 8d198f9be..68470964d 100644 --- a/khelpcenter/view.cpp +++ b/khelpcenter/view.cpp @@ -20,9 +20,9 @@ using namespace KHC; -View::View( TQWidget *tqparentWidget, const char *widgetName, +View::View( TQWidget *parentWidget, const char *widgetName, TQObject *parent, const char *name, KHTMLPart::GUIProfile prof, KActionCollection *col ) - : KHTMLPart( tqparentWidget, widgetName, parent, name, prof ), mState( Docu ), mActionCollection(col) + : KHTMLPart( parentWidget, widgetName, parent, name, prof ), mState( Docu ), mActionCollection(col) { setJScriptEnabled(false); setJavaEnabled(false); diff --git a/khelpcenter/view.h b/khelpcenter/view.h index 1c5a2bf66..3af2a15b8 100644 --- a/khelpcenter/view.h +++ b/khelpcenter/view.h @@ -20,7 +20,7 @@ class View : public KHTMLPart { Q_OBJECT public: - View( TQWidget *tqparentWidget, const char *widgetName, + View( TQWidget *parentWidget, const char *widgetName, TQObject *parent, const char *name, KHTMLPart::GUIProfile prof, KActionCollection *col ); |