summaryrefslogtreecommitdiffstats
path: root/kexi/formeditor/spring.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/formeditor/spring.h')
-rw-r--r--kexi/formeditor/spring.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kexi/formeditor/spring.h b/kexi/formeditor/spring.h
index 09f9cccb..dac4a2fb 100644
--- a/kexi/formeditor/spring.h
+++ b/kexi/formeditor/spring.h
@@ -38,7 +38,7 @@ class KFORMEDITOR_EXPORT Spring : public TQWidget
Q_OBJECT
TQ_ENUMS(SizeType)
- TQ_PROPERTY(Qt::Orientation orientation READ orientation WRITE setOrientation)
+ TQ_PROPERTY(Orientation orientation READ orientation WRITE setOrientation)
TQ_PROPERTY(SizeType sizeType READ sizeType WRITE setSizeType)
private:
@@ -54,8 +54,8 @@ class KFORMEDITOR_EXPORT Spring : public TQWidget
static bool isPropertyVisible(const TQCString &name);
static void saveSpring(KFormDesigner::ObjectTreeItem *item, TQDomElement &parent, TQDomDocument &domDoc, bool insideGridLayout);
- void setOrientation(Qt::Orientation orient);
- Qt::Orientation orientation() const { return m_orient;}
+ void setOrientation(Orientation orient);
+ Orientation orientation() const { return m_orient;}
void setSizeType(SizeType size);
SizeType sizeType() const;
@@ -65,7 +65,7 @@ class KFORMEDITOR_EXPORT Spring : public TQWidget
void paintEvent(TQPaintEvent *ev);
private:
- Qt::Orientation m_orient;
+ Orientation m_orient;
bool m_edit;
};