diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-20 02:57:20 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-20 02:57:20 (GMT) |
commit | f4c51725bf131baa34e30c435b285af16948744c (patch) | |
tree | d351bf5a4975909c069742df7b16fa63f8c0690c /src/declarative/qml/qmlengine_p.h | |
parent | 667fd768b4c1400880356bb919b1b9a254728177 (diff) | |
download | Qt-f4c51725bf131baa34e30c435b285af16948744c.zip Qt-f4c51725bf131baa34e30c435b285af16948744c.tar.gz Qt-f4c51725bf131baa34e30c435b285af16948744c.tar.bz2 |
Simplify binding optimization
Diffstat (limited to 'src/declarative/qml/qmlengine_p.h')
-rw-r--r-- | src/declarative/qml/qmlengine_p.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/declarative/qml/qmlengine_p.h b/src/declarative/qml/qmlengine_p.h index f459dc5..4bef85a 100644 --- a/src/declarative/qml/qmlengine_p.h +++ b/src/declarative/qml/qmlengine_p.h @@ -93,11 +93,10 @@ public: void init(); - bool fetchCache(QmlBasicScriptNodeCache &cache, const QString &propName, QObject *); - bool loadCache(QmlBasicScriptNodeCache &cache, const QString &propName, QmlContextPrivate *context); - - QScriptClass::QueryFlags queryObject(const QString &name, uint *id, QObject *); - QScriptValue propertyObject(const QScriptString &propName, QObject *, uint id = 0); + QScriptClass::QueryFlags queryObject(const QString &name, uint *id, + QObject *); + QScriptValue propertyObject(const QScriptString &propName, QObject *, + uint id = 0); struct CapturedProperty { CapturedProperty(QObject *o, int c, int n) |