summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativegridview.cpp
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2010-04-07 04:08:19 (GMT)
committerMartin Jones <martin.jones@nokia.com>2010-04-07 04:08:19 (GMT)
commit60c9d955918dde759ac038ff73c7767d62add3b7 (patch)
treea321c228c0c9e4d0267f7d40920e70f195f4b53f /src/declarative/graphicsitems/qdeclarativegridview.cpp
parentdd9376a096fa4e50cb5c192fc66c749e0e60a467 (diff)
downloadQt-60c9d955918dde759ac038ff73c7767d62add3b7.zip
Qt-60c9d955918dde759ac038ff73c7767d62add3b7.tar.gz
Qt-60c9d955918dde759ac038ff73c7767d62add3b7.tar.bz2
Fix warning
Diffstat (limited to 'src/declarative/graphicsitems/qdeclarativegridview.cpp')
-rw-r--r--src/declarative/graphicsitems/qdeclarativegridview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativegridview.cpp b/src/declarative/graphicsitems/qdeclarativegridview.cpp
index 3ad18cf..e44a26d 100644
--- a/src/declarative/graphicsitems/qdeclarativegridview.cpp
+++ b/src/declarative/graphicsitems/qdeclarativegridview.cpp
@@ -102,7 +102,7 @@ public:
QDeclarativeGridViewPrivate()
: currentItem(0), flow(QDeclarativeGridView::LeftToRight)
, visibleIndex(0) , currentIndex(-1)
- , cellWidth(100), cellHeight(100), columns(1), itemCount(0), requestedIndex(-1)
+ , cellWidth(100), cellHeight(100), columns(1), requestedIndex(-1), itemCount(0)
, highlightRangeStart(0), highlightRangeEnd(0), highlightRange(QDeclarativeGridView::NoHighlightRange)
, highlightComponent(0), highlight(0), trackedItem(0)
, moveReason(Other), buffer(0), highlightXAnimator(0), highlightYAnimator(0)