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