summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKent Hansen <kent.hansen@nokia.com>2011-10-05 12:36:57 +0200
committerQt by Nokia <qt-info@nokia.com>2011-10-05 15:05:45 +0200
commitab0efaacf9f3d2168ed1a7b3960b006b110260c2 (patch)
treebe8215bf2771fee29f2dc85d2d7b1bbffe42664a /src
parentb2a83496f35b2bf482c0a0cf959e1d3199caeb59 (diff)
downloadqtscript-ab0efaacf9f3d2168ed1a7b3960b006b110260c2.tar.gz
Fix typo in JavaScriptCore/runtime/Structure.cpp
Task-number: QTBUG-20482 Change-Id: Ie982ea54f9321afbea37a9986538d905a22eca7b Reviewed-on: http://codereview.qt-project.org/6060 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/3rdparty/javascriptcore/JavaScriptCore/runtime/Structure.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/runtime/Structure.cpp b/src/3rdparty/javascriptcore/JavaScriptCore/runtime/Structure.cpp
index 8e50dd1..88f3f9a 100644
--- a/src/3rdparty/javascriptcore/JavaScriptCore/runtime/Structure.cpp
+++ b/src/3rdparty/javascriptcore/JavaScriptCore/runtime/Structure.cpp
@@ -509,7 +509,7 @@ PassRefPtr<Structure> Structure::getterSetterTransition(Structure* structure)
{
RefPtr<Structure> transition = create(structure->storedPrototype(), structure->typeInfo());
transition->m_propertyStorageCapacity = structure->m_propertyStorageCapacity;
- transition->m_hasGetterSetterProperties = transition->m_hasGetterSetterProperties;
+ transition->m_hasGetterSetterProperties = structure->m_hasGetterSetterProperties;
transition->m_hasNonEnumerableProperties = structure->m_hasNonEnumerableProperties;
transition->m_specificFunctionThrashCount = structure->m_specificFunctionThrashCount;