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.cpp | |
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.cpp')
-rw-r--r-- | parts/appwizard/filepropspage.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/parts/appwizard/filepropspage.cpp b/parts/appwizard/filepropspage.cpp index 8b60e369..e7436d04 100644 --- a/parts/appwizard/filepropspage.cpp +++ b/parts/appwizard/filepropspage.cpp @@ -1,18 +1,18 @@ #include "filepropspage.h" -#include <qlistbox.h> +#include <tqlistbox.h> #include <klineedit.h> -#include <qtextview.h> +#include <tqtextview.h> #include <klocale.h> -#include <qlabel.h> -#include <qmultilineedit.h> +#include <tqlabel.h> +#include <tqmultilineedit.h> /* * Constructs a FilePropsPage which is a child of 'parent', with the * name 'name' and widget flags set to 'f' */ -FilePropsPage::FilePropsPage( QWidget* parent, const char* name, WFlags fl ) +FilePropsPage::FilePropsPage( TQWidget* parent, const char* name, WFlags fl ) : FilePropsPageBase( parent, name, fl ){ - m_props = new QPtrList<ClassFileProp>; + m_props = new TQPtrList<ClassFileProp>; m_current_class = 9999; // no current } @@ -60,7 +60,7 @@ void FilePropsPage::slotSelectionChanged() m_current_class = item; } -void FilePropsPage::setClassFileProps(QPtrList<ClassFileProp> props,bool different_header_impl){ +void FilePropsPage::setClassFileProps(TQPtrList<ClassFileProp> props,bool different_header_impl){ *m_props = props; m_different_header_impl = different_header_impl; if (!m_different_header_impl){ @@ -78,10 +78,10 @@ void FilePropsPage::setClassFileProps(QPtrList<ClassFileProp> props,bool differe slotSelectionChanged(); } -QPtrList<ClassFileProp> FilePropsPage::getClassFileProps(){ +TQPtrList<ClassFileProp> FilePropsPage::getClassFileProps(){ return *m_props; } -void FilePropsPage::slotClassnameChanged(const QString& text){ +void FilePropsPage::slotClassnameChanged(const TQString& text){ classes_listbox->changeItem(text, classes_listbox->currentItem()); } |