diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2010-07-02 08:51:51 (GMT) |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2010-07-02 08:53:25 (GMT) |
commit | 906b3bfd27ba87b5b09899345e7484ecab7ab022 (patch) | |
tree | 2680ff824ef4327bef1ad4f06f4742c4213aa3a4 /tools/designer/src/components | |
parent | 29e6a5c1b1a17b8080c2dcae92dcea11b591907d (diff) | |
download | Qt-906b3bfd27ba87b5b09899345e7484ecab7ab022.zip Qt-906b3bfd27ba87b5b09899345e7484ecab7ab022.tar.gz Qt-906b3bfd27ba87b5b09899345e7484ecab7ab022.tar.bz2 |
Designer: Fix compiler warnings.
Warnings introduced by 312c028d44a80f5d6029eb166a0de731f8452525
and gcc 4.5.
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'tools/designer/src/components')
-rw-r--r-- | tools/designer/src/components/buddyeditor/buddyeditor.cpp | 1 | ||||
-rw-r--r-- | tools/designer/src/components/formeditor/qmdiarea_container.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tools/designer/src/components/buddyeditor/buddyeditor.cpp b/tools/designer/src/components/buddyeditor/buddyeditor.cpp index 9da257e..e367f9a 100644 --- a/tools/designer/src/components/buddyeditor/buddyeditor.cpp +++ b/tools/designer/src/components/buddyeditor/buddyeditor.cpp @@ -405,6 +405,7 @@ QWidget *BuddyEditor::findBuddy(QLabel *l, const QWidgetList &existingBuddies) c const int y = geom.center().y(); QWidget *neighbour = 0; switch (l->layoutDirection()) { + case Qt::LayoutDirectionAuto: case Qt::LeftToRight: { // Walk right to find next managed neighbour const int xEnd = parent->size().width(); for (int x = geom.right() + 1; x < xEnd; x += DeltaX) diff --git a/tools/designer/src/components/formeditor/qmdiarea_container.cpp b/tools/designer/src/components/formeditor/qmdiarea_container.cpp index 5971094..5e266f4 100644 --- a/tools/designer/src/components/formeditor/qmdiarea_container.cpp +++ b/tools/designer/src/components/formeditor/qmdiarea_container.cpp @@ -105,6 +105,7 @@ void QMdiAreaContainer::positionNewMdiChild(const QWidget *area, QWidget *mdiChi const QPoint pos = mdiChild->pos(); const QSize areaSize = area->size(); switch (QApplication::layoutDirection()) { + case Qt::LayoutDirectionAuto: case Qt::LeftToRight: { const QSize fullSize = QSize(areaSize.width() - pos.x(), areaSize.height() - pos.y()); if (fullSize.width() > MinSize && fullSize.height() > MinSize) |