diff options
Diffstat (limited to 'kommander/editor/layout.h')
-rw-r--r-- | kommander/editor/layout.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kommander/editor/layout.h b/kommander/editor/layout.h index e42759cb..ee266127 100644 --- a/kommander/editor/layout.h +++ b/kommander/editor/layout.h @@ -115,7 +115,7 @@ class Spacer : public TQWidget TQ_OVERRIDE( TQCString name ) - TQ_PROPERTY( Qt::Orientation orientation READ orientation WRITE setOrientation ) + TQ_PROPERTY( Orientation orientation READ orientation WRITE setOrientation ) TQ_ENUMS( SizeType ) TQ_PROPERTY( SizeType sizeType READ sizeType WRITE setSizeType ) TQ_PROPERTY( TQSize sizeHint READ sizeHint WRITE setSizeHint DESIGNABLE true STORED true ) @@ -140,8 +140,8 @@ public: void setSizeType( SizeType t ); SizeType sizeType() const; int alignment() const; - Qt::Orientation orientation() const; - void setOrientation( Qt::Orientation o ); + Orientation orientation() const; + void setOrientation( Orientation o ); void setInteraciveMode( bool b ) { interactive = b; }; void setSizeHint( const TQSize &s ); @@ -149,7 +149,7 @@ protected: void paintEvent( TQPaintEvent *e ); void resizeEvent( TQResizeEvent* e ); void updateMask(); - Qt::Orientation orient; + Orientation orient; bool interactive; TQSize sh; }; |