summaryrefslogtreecommitdiffstats
path: root/src/flowlayout.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/flowlayout.h')
-rw-r--r--src/flowlayout.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/flowlayout.h b/src/flowlayout.h
index df68e66..47d8dbd 100644
--- a/src/flowlayout.h
+++ b/src/flowlayout.h
@@ -37,9 +37,9 @@ public:
ABOVE = 0,
BELOW = 1
};
- FlowLayout( TQWidget* parent, Qt::Orientation orientation=Qt::Horizontal, int border=0, int space=-1, const char* name=0 );
- FlowLayout( TQLayout* parent, Qt::Orientation orientation=Qt::Horizontal, int space=-1, const char* name=0 );
- FlowLayout( Qt::Orientation=Qt::Horizontal, int space=-1, const char* name=0 );
+ FlowLayout( TQWidget* parent, TQt::Orientation orientation=TQt::Horizontal, int border=0, int space=-1, const char* name=0 );
+ FlowLayout( TQLayout* parent, TQt::Orientation orientation=TQt::Horizontal, int space=-1, const char* name=0 );
+ FlowLayout( TQt::Orientation=TQt::Horizontal, int space=-1, const char* name=0 );
virtual ~FlowLayout();
/**
* tells all sources their positions
@@ -66,10 +66,10 @@ public:
TQSize minimumSize() const;
TQLayoutIterator iterator();
TQSizePolicy::ExpandData expanding() const;
- Qt::Orientation getOrientation() const;
+ TQt::Orientation getOrientation() const;
public slots:
- void setOrientation(Qt::Orientation orientation);
+ void setOrientation(TQt::Orientation orientation);
protected:
void setGeometry(const TQRect&);
@@ -78,7 +78,7 @@ private:
int doLayout( const TQRect&, bool testOnly = FALSE );
int doLayoutHorizontal( const TQRect&, bool testOnly );
int doLayoutVertical( const TQRect&, bool testOnly );
- Qt::Orientation mOrientation;
+ TQt::Orientation mOrientation;
TQPtrList<TQLayoutItem> mLayoutItems;
// this is the connection between a layout item and its source.
TQMap<TQLayoutItem*, Source*> mSources;