summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2009-06-17 08:54:26 (GMT)
committerJason McDonald <jason.mcdonald@nokia.com>2009-06-17 08:54:26 (GMT)
commitc57e8b1e92c369c2aa507ebfa6cfebe18a282635 (patch)
tree8b0cb3bf4b2245b3dfa58dfcd7fc8f240a14cacf
parentb56095c51087717c0797f64abf3c4200066348b8 (diff)
parenta54c18e27bbb14872abd0559c268ba33b1265703 (diff)
downloadQt-c57e8b1e92c369c2aa507ebfa6cfebe18a282635.zip
Qt-c57e8b1e92c369c2aa507ebfa6cfebe18a282635.tar.gz
Qt-c57e8b1e92c369c2aa507ebfa6cfebe18a282635.tar.bz2
Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qt into 4.5
-rw-r--r--src/gui/itemviews/qabstractitemview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/itemviews/qabstractitemview.cpp b/src/gui/itemviews/qabstractitemview.cpp
index c3d1bf7..8594968 100644
--- a/src/gui/itemviews/qabstractitemview.cpp
+++ b/src/gui/itemviews/qabstractitemview.cpp
@@ -2932,7 +2932,7 @@ void QAbstractItemView::dataChanged(const QModelIndex &topLeft, const QModelInde
}
if (isVisible() && !d->delayedPendingLayout) {
// otherwise the items will be update later anyway
- d->viewport->update(visualRect(topLeft));
+ update(topLeft);
}
return;
}