diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-10-30 16:48:40 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-10-30 16:48:40 -0500 |
commit | 27ccd2aacf0aa799d4adca6b3bf1457ce24e2592 (patch) | |
tree | 572c15b4a2825860243ebb75dd8379323bd60a9e /kommander/editor/layout.h | |
parent | 8a511b5ac9055821d5eba49a6706dd9065d0769a (diff) | |
download | tdewebdev-27ccd2aacf0aa799d4adca6b3bf1457ce24e2592.tar.gz tdewebdev-27ccd2aacf0aa799d4adca6b3bf1457ce24e2592.zip |
Fix FTBFS on TQt3
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; }; |