diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-06-24 11:24:07 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-06-24 11:24:07 (GMT) |
commit | e9d1f93c5a2c8a0d800dd83190fd3060abe4850b (patch) | |
tree | 4139b9eaa9ffffc61c6cd6a995322b50609a94a4 /src/script/bridge | |
parent | 22f99440c8b586ab7da4799e7ae1f4d12eaab9e3 (diff) | |
download | Qt-e9d1f93c5a2c8a0d800dd83190fd3060abe4850b.zip Qt-e9d1f93c5a2c8a0d800dd83190fd3060abe4850b.tar.gz Qt-e9d1f93c5a2c8a0d800dd83190fd3060abe4850b.tar.bz2 |
rename createStructureID() function
The JSC function was renamed, so we need to do so too, otherwise
we call the function defined in the base class.
Diffstat (limited to 'src/script/bridge')
-rw-r--r-- | src/script/bridge/qscriptqobject_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/bridge/qscriptqobject_p.h b/src/script/bridge/qscriptqobject_p.h index 3c2f2d2..ba7a4b4 100644 --- a/src/script/bridge/qscriptqobject_p.h +++ b/src/script/bridge/qscriptqobject_p.h @@ -83,7 +83,7 @@ public: inline void setOptions(QScriptEngine::QObjectWrapOptions options) { data->options = options; } - static WTF::PassRefPtr<JSC::Structure> createStructureID(JSC::JSValue prototype) + static WTF::PassRefPtr<JSC::Structure> createStructure(JSC::JSValue prototype) { return JSC::Structure::create(prototype, JSC::TypeInfo(JSC::ObjectType)); } |