diff options
Diffstat (limited to 'src/flowlayout.h')
-rw-r--r-- | src/flowlayout.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/flowlayout.h b/src/flowlayout.h index ae07a66..624d38b 100644 --- a/src/flowlayout.h +++ b/src/flowlayout.h @@ -20,7 +20,7 @@ #ifndef FLOWLAYOUT_H #define FLOWLAYOUT_H -#include <layout.h> +#include <tqlayout.h> #include <tqptrlist.h> class Source; @@ -49,7 +49,7 @@ public: void addSource(Source* src); void remove(TQWidget* widget); /** - * Returns the number of items in the layout + * Returns the number of items in the tqlayout */ uint count(); /** @@ -62,8 +62,8 @@ public: int heightForWidth(int w) const; bool hasWidthForHeight() const; int widthForHeight(int h) const; - TQSize sizeHint() const; - TQSize minimumSize() const; + TQSize tqsizeHint() const; + TQSize tqminimumSize() const; TQLayoutIterator iterator(); TQSizePolicy::ExpandData expanding() const; Qt::Orientation getOrientation() const; @@ -84,7 +84,7 @@ private: int doLayoutVertical( const TQRect&, bool testOnly ); Qt::Orientation mOrientation; TQPtrList<TQLayoutItem> mLayoutItems; - // this is the connection between a layout item and its source. + // this is the connection between a tqlayout item and its source. TQMap<TQLayoutItem*, Source*> mSources; TQLayoutItem* mLastItem; // the item that was last added }; |