summaryrefslogtreecommitdiff
path: root/tools/designer/src/components/buddyeditor/buddyeditor.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-07-02 10:51:51 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-07-02 10:53:25 +0200
commit906b3bfd27ba87b5b09899345e7484ecab7ab022 (patch)
tree2680ff824ef4327bef1ad4f06f4742c4213aa3a4 /tools/designer/src/components/buddyeditor/buddyeditor.cpp
parent29e6a5c1b1a17b8080c2dcae92dcea11b591907d (diff)
downloadqt4-tools-906b3bfd27ba87b5b09899345e7484ecab7ab022.tar.gz
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/buddyeditor/buddyeditor.cpp')
-rw-r--r--tools/designer/src/components/buddyeditor/buddyeditor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/designer/src/components/buddyeditor/buddyeditor.cpp b/tools/designer/src/components/buddyeditor/buddyeditor.cpp
index 9da257e547..e367f9a29e 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)