diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-25 06:29:26 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-25 06:31:37 (GMT) |
commit | c8823023db4a280f3d12c983451a05f8da3780dd (patch) | |
tree | 8b7925f3076df489123365f7116535b505ef2438 /src/declarative/qml/qdeclarativevmemetaobject.cpp | |
parent | 6721e5270b33e5e88c68ec426d482b9b633d8fd6 (diff) | |
download | Qt-c8823023db4a280f3d12c983451a05f8da3780dd.zip Qt-c8823023db4a280f3d12c983451a05f8da3780dd.tar.gz Qt-c8823023db4a280f3d12c983451a05f8da3780dd.tar.bz2 |
Make more private QDeclarativeMetaProperty methods private
Diffstat (limited to 'src/declarative/qml/qdeclarativevmemetaobject.cpp')
-rw-r--r-- | src/declarative/qml/qdeclarativevmemetaobject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativevmemetaobject.cpp b/src/declarative/qml/qdeclarativevmemetaobject.cpp index 6811e13..6edb707 100644 --- a/src/declarative/qml/qdeclarativevmemetaobject.cpp +++ b/src/declarative/qml/qdeclarativevmemetaobject.cpp @@ -105,7 +105,7 @@ int QDeclarativeVMEMetaObject::metaCall(QMetaObject::Call c, int _id, void **a) int id = _id; if(c == QMetaObject::WriteProperty) { int flags = *reinterpret_cast<int*>(a[3]); - if (!(flags & QDeclarativeMetaProperty::BypassInterceptor) + if (!(flags & QDeclarativeMetaPropertyPrivate::BypassInterceptor) && !aInterceptors.isEmpty() && aInterceptors.testBit(id)) { QPair<int, QDeclarativePropertyValueInterceptor*> pair = interceptors.value(id); |