summaryrefslogtreecommitdiffstats
path: root/parts/appwizard/filepropspage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parts/appwizard/filepropspage.cpp')
-rw-r--r--parts/appwizard/filepropspage.cpp18
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());
}