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/appwizard/filepropspage.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/appwizard/filepropspage.h')
-rw-r--r-- | parts/appwizard/filepropspage.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/parts/appwizard/filepropspage.h b/parts/appwizard/filepropspage.h index 3435dfa2..a0c923ed 100644 --- a/parts/appwizard/filepropspage.h +++ b/parts/appwizard/filepropspage.h @@ -1,19 +1,19 @@ #ifndef FILEPROPSPAGE_H #define FILEPROPSPAGE_H #include "filepropspagebase.h" -#include <qstring.h> -#include <qptrlist.h> +#include <tqstring.h> +#include <tqptrlist.h> class ClassFileProp { public: - QString m_classname; - QString m_implfile; - QString m_headerfile; - QString m_baseclass; - QString m_description; // rich text + TQString m_classname; + TQString m_implfile; + TQString m_headerfile; + TQString m_baseclass; + TQString m_description; // rich text /** to idetify this object*/ - QString m_key; + TQString m_key; bool m_change_baseclass; }; @@ -22,17 +22,17 @@ class FilePropsPage : public FilePropsPageBase Q_OBJECT public: - FilePropsPage( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); + FilePropsPage( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); ~FilePropsPage(); - void setClassFileProps(QPtrList<ClassFileProp> props,bool different_header_impl=true); - QPtrList<ClassFileProp> getClassFileProps(); + void setClassFileProps(TQPtrList<ClassFileProp> props,bool different_header_impl=true); + TQPtrList<ClassFileProp> getClassFileProps(); public slots: void slotSelectionChanged(); - virtual void slotClassnameChanged(const QString&); + virtual void slotClassnameChanged(const TQString&); protected: - QPtrList<ClassFileProp>* m_props; + TQPtrList<ClassFileProp>* m_props; bool m_different_header_impl; uint m_current_class; |