diff options
Diffstat (limited to 'src/newui/dtabwidget.h')
-rw-r--r-- | src/newui/dtabwidget.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/newui/dtabwidget.h b/src/newui/dtabwidget.h index 9640d2cd..d3e5d9da 100644 --- a/src/newui/dtabwidget.h +++ b/src/newui/dtabwidget.h @@ -27,31 +27,31 @@ class QToolButton; class DTabWidget: public KTabWidget { Q_OBJECT public: - DTabWidget(QWidget *parent=0, const char *name=0); + DTabWidget(TQWidget *parent=0, const char *name=0); /**@return The close button at the top right corner. May be 0 if the configuration do not allow close buttons or the tabbar.*/ - QToolButton *closeButton() const; + TQToolButton *closeButton() const; - virtual void insertTab(QWidget *child, const QString &label, int index = -1 ); - virtual void insertTab(QWidget *child, const QIconSet &iconset, - const QString &label, int index = -1); + virtual void insertTab(TQWidget *child, const TQString &label, int index = -1 ); + virtual void insertTab(TQWidget *child, const TQIconSet &iconset, + const TQString &label, int index = -1); protected: virtual void loadSettings(); virtual void saveSettings(); private slots: - void setFocus(QWidget *w); -// void updateHistory(QWidget *w); + void setFocus(TQWidget *w); +// void updateHistory(TQWidget *w); private: bool m_tabBarShown; bool m_closeOnHover; bool m_closeButtonShown; - QToolButton *m_closeButton; -// QValueStack<QWidget*> *m_history; + TQToolButton *m_closeButton; +// TQValueStack<TQWidget*> *m_history; }; |