From 27ccd2aacf0aa799d4adca6b3bf1457ce24e2592 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 30 Oct 2012 16:48:40 -0500 Subject: Fix FTBFS on TQt3 --- kommander/editor/widgetfactory.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'kommander/editor/widgetfactory.h') diff --git a/kommander/editor/widgetfactory.h b/kommander/editor/widgetfactory.h index 913e855c..2341b676 100644 --- a/kommander/editor/widgetfactory.h +++ b/kommander/editor/widgetfactory.h @@ -71,7 +71,7 @@ public: }; static TQWidget *create( int id, TQWidget *parent, const char *name = 0, bool init = TRUE, - const TQRect *rect = 0, Qt::Orientation orient = Qt::Horizontal ); + const TQRect *rect = 0, Orientation orient = TQt::Horizontal ); static TQLayout *createLayout( TQWidget *widget, TQLayout* layout, LayoutType type ); static void deleteLayout( TQWidget *widget ); @@ -102,7 +102,7 @@ public: private: static TQWidget *createWidget( const TQString &className, TQWidget *parent, const char *name, bool init, - const TQRect *r = 0, Qt::Orientation orient = Qt::Horizontal ); + const TQRect *r = 0, Orientation orient = TQt::Horizontal ); static TQWidget *createCustomWidget( TQWidget *parent, const char *name, MetaDataBase::CustomWidget *w ); }; @@ -281,7 +281,7 @@ class Line : public TQFrame Q_OBJECT - TQ_PROPERTY( Qt::Orientation orientation READ orientation WRITE setOrientation ) + TQ_PROPERTY( Orientation orientation READ orientation WRITE setOrientation ) TQ_OVERRIDE( int frameWidth DESIGNABLE false ) TQ_OVERRIDE( Shape frameShape DESIGNABLE false ) TQ_OVERRIDE( TQRect frameRect DESIGNABLE false ) @@ -292,14 +292,14 @@ public: setFrameStyle( HLine | Sunken ); } - void setOrientation( Qt::Orientation orient ) { - if ( orient ==Qt::Horizontal ) + void setOrientation( Orientation orient ) { + if ( orient ==TQt::Horizontal ) setFrameShape( HLine ); else setFrameShape( VLine ); } - Qt::Orientation orientation() const { - return frameShape() == HLine ?Qt::Horizontal :Qt::Vertical; + Orientation orientation() const { + return frameShape() == HLine ?TQt::Horizontal :TQt::Vertical; } }; -- cgit v1.2.1