diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
commit | d6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch) | |
tree | d109539636691d7b03036ca1c0ed29dbae6577cf /parts/documentation/indexview.h | |
parent | 3331a47a9cad24795c7440ee8107143ce444ef34 (diff) | |
download | tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'parts/documentation/indexview.h')
-rw-r--r-- | parts/documentation/indexview.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/parts/documentation/indexview.h b/parts/documentation/indexview.h index 4a2f336a..af403891 100644 --- a/parts/documentation/indexview.h +++ b/parts/documentation/indexview.h @@ -20,7 +20,7 @@ #ifndef INDEXVIEW_H #define INDEXVIEW_H -#include <qwidget.h> +#include <tqwidget.h> class IndexBox; class KLineEdit; @@ -35,22 +35,22 @@ public: IndexView(DocumentationWidget *parent = 0, const char *name = 0); ~IndexView(); - virtual bool eventFilter(QObject *watched, QEvent *e); + virtual bool eventFilter(TQObject *watched, TQEvent *e); IndexBox *indexBox() const { return m_index; } public slots: void searchInIndex(); - void setSearchTerm(const QString &term); + void setSearchTerm(const TQString &term); void askSearchTerm(); protected slots: - void searchInIndex(QListBoxItem *item); - void showIndex(const QString &term); + void searchInIndex(TQListBoxItem *item); + void showIndex(const TQString &term); - void itemMouseButtonPressed(int button, QListBoxItem *item, const QPoint &pos); + void itemMouseButtonPressed(int button, TQListBoxItem *item, const TQPoint &pos); protected: - virtual void focusInEvent(QFocusEvent *e); + virtual void focusInEvent(TQFocusEvent *e); private: DocumentationWidget *m_widget; |