aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4string.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2014-01-20 11:43:25 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-21 08:18:38 +0100
commit65ec0ab2e432139a2befe887ed9af4603ee1ae03 (patch)
tree6d6123e2af648df632eb3209d20291a8dad8035a /src/qml/jsruntime/qv4string.cpp
parent393108500832dcefa4c4def442a08f20d3fbc4cd (diff)
Reorder members in ManagedVTable
This is to prepare splitting it up into a several type dependent vtables. Change-Id: I5de8234e40ffc73fab47d43f4a1b30d244fc6ad9 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4string.cpp')
-rw-r--r--src/qml/jsruntime/qv4string.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/jsruntime/qv4string.cpp b/src/qml/jsruntime/qv4string.cpp
index df48faf601..ead818c8bd 100644
--- a/src/qml/jsruntime/qv4string.cpp
+++ b/src/qml/jsruntime/qv4string.cpp
@@ -110,10 +110,11 @@ const ManagedVTable String::static_vtbl =
String::IsErrorObject,
0,
String::MyType,
+ "String",
+ destroy,
+ markObjects,
call,
construct,
- markObjects,
- destroy,
0 /*collectDeletables*/,
get,
getIndexed,
@@ -128,7 +129,6 @@ const ManagedVTable String::static_vtbl =
isEqualTo,
0,
0 /*advanceIterator*/,
- "String",
};
void String::destroy(Managed *that)