diff options
author | Jan-Arve Saether <jan-arve.saether@nokia.com> | 2012-09-17 09:19:46 (GMT) |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2012-10-12 00:19:36 (GMT) |
commit | 94f67af01db287e67fce09cdb56a9f1d283f8b64 (patch) | |
tree | 525a07396705c5281d1111b2ee572967ee0b30e7 /src/gui/widgets | |
parent | 77faf459db85a3a6c1157406f0c8b421ec52cb6b (diff) | |
download | Qt-94f67af01db287e67fce09cdb56a9f1d283f8b64.zip Qt-94f67af01db287e67fce09cdb56a9f1d283f8b64.tar.gz Qt-94f67af01db287e67fce09cdb56a9f1d283f8b64.tar.bz2 |
Clean up whitespace
Change-Id: Id1e293352d90a151e31ba73168400aacebc588dc
Reviewed-by: Paul Olav Tvete <paul.tvete@digia.com>
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/qstackedwidget.cpp | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/src/gui/widgets/qstackedwidget.cpp b/src/gui/widgets/qstackedwidget.cpp index d0d6e9e..f2cd245 100644 --- a/src/gui/widgets/qstackedwidget.cpp +++ b/src/gui/widgets/qstackedwidget.cpp @@ -56,40 +56,40 @@ QT_BEGIN_NAMESPACE However, we can fix QStackedWidget by simply using a modified version of QStackedLayout that reimplements the hfw-related functions: */ -class QStackedLayoutHFW : public QStackedLayout -{ -public: - QStackedLayoutHFW(QWidget *parent = 0) : QStackedLayout(parent) {} - bool hasHeightForWidth() const; - int heightForWidth(int width) const; -}; - -bool QStackedLayoutHFW::hasHeightForWidth() const -{ - const int n = count(); - - for (int i = 0; i < n; ++i) { - if (QLayoutItem *item = itemAt(i)) { - if (item->hasHeightForWidth()) - return true; - } - } - return false; -} - -int QStackedLayoutHFW::heightForWidth(int width) const -{ - const int n = count(); - - int hfw = 0; - for (int i = 0; i < n; ++i) { - if (QLayoutItem *item = itemAt(i)) { - hfw = qMax(hfw, item->heightForWidth(width)); - } - } - return hfw; -} - +class QStackedLayoutHFW : public QStackedLayout +{ +public: + QStackedLayoutHFW(QWidget *parent = 0) : QStackedLayout(parent) {} + bool hasHeightForWidth() const; + int heightForWidth(int width) const; +}; + +bool QStackedLayoutHFW::hasHeightForWidth() const +{ + const int n = count(); + + for (int i = 0; i < n; ++i) { + if (QLayoutItem *item = itemAt(i)) { + if (item->hasHeightForWidth()) + return true; + } + } + return false; +} + +int QStackedLayoutHFW::heightForWidth(int width) const +{ + const int n = count(); + + int hfw = 0; + for (int i = 0; i < n; ++i) { + if (QLayoutItem *item = itemAt(i)) { + hfw = qMax(hfw, item->heightForWidth(width)); + } + } + return hfw; +} + class QStackedWidgetPrivate : public QFramePrivate { |