diff options
Diffstat (limited to 'quanta/utility/toolbartabwidget.h')
-rw-r--r-- | quanta/utility/toolbartabwidget.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/quanta/utility/toolbartabwidget.h b/quanta/utility/toolbartabwidget.h index 11318394..7fd47031 100644 --- a/quanta/utility/toolbartabwidget.h +++ b/quanta/utility/toolbartabwidget.h @@ -31,10 +31,10 @@ class ToolbarTabWidget: public TQTabWidget public: TQWidgetStack *m_widgetStack; - static ToolbarTabWidget* const ref(TQWidget *tqparent = 0L, const char *name = 0L) + static ToolbarTabWidget* const ref(TQWidget *parent = 0L, const char *name = 0L) { static ToolbarTabWidget *m_ref; - if (!m_ref) m_ref = new ToolbarTabWidget (tqparent, name); + if (!m_ref) m_ref = new ToolbarTabWidget (parent, name); return m_ref; } virtual ~ToolbarTabWidget(){}; @@ -77,7 +77,7 @@ protected: TQMap<TQString, TQWidget*> toolbarList; private: - ToolbarTabWidget(TQWidget * tqparent = 0, const char * name = 0, WFlags f = 0); + ToolbarTabWidget(TQWidget * parent = 0, const char * name = 0, WFlags f = 0); KToolBar::IconText m_iconText; }; @@ -88,7 +88,7 @@ class QuantaToolBar: public KToolBar TQ_OBJECT public: - QuantaToolBar (TQWidget *tqparent, const char *name=0, bool honor_style=FALSE, bool readConfig=TRUE); + QuantaToolBar (TQWidget *parent, const char *name=0, bool honor_style=FALSE, bool readConfig=TRUE); virtual ~QuantaToolBar() {}; private slots: |