aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlex Wilson <alex.wilson@nokia.com>2012-02-23 11:57:18 +1000
committerQt by Nokia <qt-info@nokia.com>2012-02-23 04:06:04 +0100
commit09ea9cace4286c639044aef79f2deb107c2a5376 (patch)
tree272ff2fdb4fb3f34ac377bb9a5595222915a9d37 /src
parent924a9620d528da85dc19df7573d33ba4132e5a3a (diff)
Fix for bad operator precedence causing right mouse button issues
Binary or (|) has higher operator precedence than a ternary in C, causing the original expression here to function quite incorrectly for anything other than the common left-mouse-button-only case. I just added brackets -- feel free to change this to "if"s if you think that would more clearly avoid this issue in future. Change-Id: Ie20bd7e805b89a393794d3240fb0ae680b29ff64 Reviewed-by: Andrew den Exter <andrew.den-exter@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/quick/items/qquickitem_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quick/items/qquickitem_p.h b/src/quick/items/qquickitem_p.h
index c2cc7d000b..fd02334ab3 100644
--- a/src/quick/items/qquickitem_p.h
+++ b/src/quick/items/qquickitem_p.h
@@ -830,8 +830,8 @@ private:
Qt::MouseButtons QQuickItemPrivate::acceptedMouseButtons() const
{
- return extra.flag()?Qt::LeftButton:Qt::MouseButton(0) |
- (extra.isAllocated()?extra->acceptedMouseButtons:Qt::MouseButtons(0));
+ return ((extra.flag() ? Qt::LeftButton : Qt::MouseButton(0)) |
+ (extra.isAllocated() ? extra->acceptedMouseButtons : Qt::MouseButtons(0)));
}
QSGContext *QQuickItemPrivate::sceneGraphContext() const