summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-10-21 18:19:49 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-10-21 18:19:49 (GMT)
commitbe6a0b58680213da42d956ed9d1c77103be24c93 (patch)
tree125ea41fca985931014da8947341fdcbc71c4e65
parent9624d70e5588bb1f6b0c894288c8ec3d4b3246c6 (diff)
parent6018c6138018eb322ccdc8f34516e77ee43ed83d (diff)
downloadQt-be6a0b58680213da42d956ed9d1c77103be24c93.zip
Qt-be6a0b58680213da42d956ed9d1c77103be24c93.tar.gz
Qt-be6a0b58680213da42d956ed9d1c77103be24c93.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: Remove unnecessary rounding
-rw-r--r--src/declarative/graphicsitems/qdeclarativeflickable.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativeflickable.cpp b/src/declarative/graphicsitems/qdeclarativeflickable.cpp
index 57ce4ce..b737785 100644
--- a/src/declarative/graphicsitems/qdeclarativeflickable.cpp
+++ b/src/declarative/graphicsitems/qdeclarativeflickable.cpp
@@ -483,7 +483,6 @@ qreal QDeclarativeFlickable::contentX() const
void QDeclarativeFlickable::setContentX(qreal pos)
{
Q_D(QDeclarativeFlickable);
- pos = qRound(pos);
d->timeline.reset(d->hData.move);
d->vTime = d->timeline.time();
movementXEnding();
@@ -502,7 +501,6 @@ qreal QDeclarativeFlickable::contentY() const
void QDeclarativeFlickable::setContentY(qreal pos)
{
Q_D(QDeclarativeFlickable);
- pos = qRound(pos);
d->timeline.reset(d->vData.move);
d->vTime = d->timeline.time();
movementYEnding();