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/classview/classtooldlg.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/classview/classtooldlg.h')
-rw-r--r-- | parts/classview/classtooldlg.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/parts/classview/classtooldlg.h b/parts/classview/classtooldlg.h index 1ab8b5c1..01c86f3b 100644 --- a/parts/classview/classtooldlg.h +++ b/parts/classview/classtooldlg.h @@ -14,11 +14,11 @@ #ifndef _CLASSTOOLDLG_H_ #define _CLASSTOOLDLG_H_ -#include <qdialog.h> -#include <qlabel.h> -#include <qtoolbutton.h> -#include <qcombobox.h> -#include <qlayout.h> +#include <tqdialog.h> +#include <tqlabel.h> +#include <tqtoolbutton.h> +#include <tqcombobox.h> +#include <tqlayout.h> #include "classtoolwidget.h" #include "parseditem.h" @@ -38,7 +38,7 @@ public: ClassToolDialog( ClassViewPart *part ); ~ClassToolDialog(); - void setClassName(const QString &name); + void setClassName(const TQString &name); public slots: @@ -63,8 +63,8 @@ private slots: void delayedClose(); void slotClose(); - void slotAccessComboChoice(const QString &str); - void slotClassComboChoice(const QString &str); + void slotAccessComboChoice(const TQString &str); + void slotClassComboChoice(const TQString &str); private: @@ -72,15 +72,15 @@ private: void buildTree(); ClassToolWidget *class_tree; - QComboBox *class_combo; + TQComboBox *class_combo; - QToolButton *parents_button; - QToolButton *children_button; - QToolButton *clients_button; - QToolButton *suppliers_button; - QToolButton *methods_button; - QToolButton *attributes_button; - QComboBox *access_combo; + TQToolButton *parents_button; + TQToolButton *children_button; + TQToolButton *clients_button; + TQToolButton *suppliers_button; + TQToolButton *methods_button; + TQToolButton *attributes_button; + TQComboBox *access_combo; /** Store that holds all classes in the system. */ ClassStore *m_store; |