QmlDesigner.NodeInstances: Refactor isManipulatable to isChangeable

Change-Id: Icfc508e1549f4cfbcdda09b4611b2d66b4e2de1d
Reviewed-on: http://codereview.qt.nokia.com/4287
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@nokia.com>
This commit is contained in:
Marco Bubke
2011-09-06 17:24:27 +02:00
parent 387eebf4e9
commit 9837dadbcb

View File

@@ -293,7 +293,7 @@ static bool hasFullImplementedListInterface(const QDeclarativeListReference &lis
#if QT_VERSION<0x050000
return list.isValid() && list.canCount() && list.canAt() && list.canAppend() && list.canClear();
#else
return list.isManipulatable();
return list.isChangeable();
#endif
}