diff options
Diffstat (limited to 'src/common/gui/misc_gui.h')
-rw-r--r-- | src/common/gui/misc_gui.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/common/gui/misc_gui.h b/src/common/gui/misc_gui.h index 7003f91..8c6a2ee 100644 --- a/src/common/gui/misc_gui.h +++ b/src/common/gui/misc_gui.h @@ -65,8 +65,8 @@ class PopupButton : public KPushButton Q_OBJECT TQ_OBJECT public: - PopupButton(TQWidget *tqparent = 0, const char *name = 0); - PopupButton(const TQString &text, TQWidget *tqparent = 0, const char *name = 0); + PopupButton(TQWidget *parent = 0, const char *name = 0); + PopupButton(const TQString &text, TQWidget *parent = 0, const char *name = 0); void appendAction(KAction *action); void appendAction(const TQString &label, const TQString &icon = TQString(), TQObject *receiver = 0, const char *slot = 0); @@ -91,7 +91,7 @@ Q_OBJECT TQ_OBJECT public: Splitter(const TQValueList<int> &defaultSizes, Qt::Orientation orientation, - TQWidget *tqparent, const char *name); + TQWidget *parent, const char *name); virtual ~Splitter(); private slots: @@ -114,7 +114,7 @@ class SeparatorWidget : public TQFrame Q_OBJECT TQ_OBJECT public: - SeparatorWidget(TQWidget *tqparent) : TQFrame(tqparent, "separator") { + SeparatorWidget(TQWidget *parent) : TQFrame(parent, "separator") { setFrameStyle(TQFrame::Panel | TQFrame::Sunken); setMargin(2); setFixedHeight(2*2); @@ -127,7 +127,7 @@ class TabBar : public KTabBar Q_OBJECT TQ_OBJECT public: - TabBar(TQWidget *tqparent = 0, const char *name = 0); + TabBar(TQWidget *parent = 0, const char *name = 0); protected: virtual void wheelEvent(TQWheelEvent *e); @@ -143,7 +143,7 @@ class TabWidget : public KTabWidget Q_OBJECT TQ_OBJECT public: - TabWidget(TQWidget *tqparent = 0, const char *name = 0); + TabWidget(TQWidget *parent = 0, const char *name = 0); void setIgnoreWheelEvent(bool ignore); protected: @@ -157,7 +157,7 @@ class ComboBox : public TQComboBox Q_OBJECT TQ_OBJECT public: - ComboBox(TQWidget *tqparent = 0, const char *name = 0); + ComboBox(TQWidget *parent = 0, const char *name = 0); void setIgnoreWheelEvent(bool ignore) { _ignoreWheelEvent = ignore; } protected: |