summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxpathview.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2009-07-22 18:27:29 (GMT)
committerLars Knoll <lars.knoll@nokia.com>2009-07-29 03:41:56 (GMT)
commitc2cfe5c403f379b3196416960880ade859b7e509 (patch)
tree754ab9e38b93646dcfe035ec4e143e6d8c7c55be /src/declarative/fx/qfxpathview.cpp
parent28a72e09be58628e6f30c6bd345ff1fe63a117a4 (diff)
downloadQt-c2cfe5c403f379b3196416960880ade859b7e509.zip
Qt-c2cfe5c403f379b3196416960880ade859b7e509.tar.gz
Qt-c2cfe5c403f379b3196416960880ade859b7e509.tar.bz2
remove itemParent() and related.
Consistently use parentItem() as it is consistent with the naming in QGraphicsItem.
Diffstat (limited to 'src/declarative/fx/qfxpathview.cpp')
-rw-r--r--src/declarative/fx/qfxpathview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/fx/qfxpathview.cpp b/src/declarative/fx/qfxpathview.cpp
index 2a36c25..98121e6 100644
--- a/src/declarative/fx/qfxpathview.cpp
+++ b/src/declarative/fx/qfxpathview.cpp
@@ -737,7 +737,7 @@ void QFxPathView::createdItem(int index, QFxItem *item)
{
Q_D(QFxPathView);
if (d->requestedIndex != index) {
- item->setItemParent(this);
+ item->setParentItem(this);
d->updateItem(item, index < d->firstIndex ? 0.0 : 1.0);
}
}