summaryrefslogtreecommitdiffstats
path: root/lib/widgets/propeditor/propertyeditor.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/widgets/propeditor/propertyeditor.h')
-rw-r--r--lib/widgets/propeditor/propertyeditor.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/widgets/propeditor/propertyeditor.h b/lib/widgets/propeditor/propertyeditor.h
index 6bdd3e32..ee868a55 100644
--- a/lib/widgets/propeditor/propertyeditor.h
+++ b/lib/widgets/propeditor/propertyeditor.h
@@ -24,8 +24,8 @@
#include <klistview.h>
#else
#include <tqlistview.h>
-#define KListView QListView
-#define KListViewItem QListViewItem
+#define KListView TQListView
+#define KListViewItem TQListViewItem
#endif
#include "propertylist.h"
@@ -57,9 +57,10 @@ creation of property widgets from the machine factory.
*/
class PropertyEditor: public KListView{
Q_OBJECT
+ TQ_OBJECT
public:
/**Constructs the property editor.*/
- PropertyEditor(TQWidget *parent = 0, const char *name = 0);
+ PropertyEditor(TQWidget *tqparent = 0, const char *name = 0);
~PropertyEditor();
/**@return @ref Machine for given property.
@@ -102,7 +103,7 @@ protected:
void addGroup(const TQString &name);
void addProperty(PropertyGroupItem *group, const TQString &name);
void addProperty(const TQString &name);
- void addChildProperties(PropertyItem *parent);
+ void addChildProperties(PropertyItem *tqparent);
private:
PropertyList *m_list;