diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:11 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:11 -0600 |
commit | 0b46312b4c5d893a6e0c29e354038bbdc5a15fdd (patch) | |
tree | 0a9819d1f6fa2690e0819c97e4bcb9a87f0d397b /src/flowlayout.h | |
parent | 6981c239dedc72969f6f539afeef646a19c867c0 (diff) | |
download | kima-0b46312b4c5d893a6e0c29e354038bbdc5a15fdd.tar.gz kima-0b46312b4c5d893a6e0c29e354038bbdc5a15fdd.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 6981c239dedc72969f6f539afeef646a19c867c0.
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 }; |