diff options
author | Lars Knoll <[email protected]> | 2014-01-20 11:43:25 +0100 |
---|---|---|
committer | The Qt Project <[email protected]> | 2014-01-21 08:18:38 +0100 |
commit | 65ec0ab2e432139a2befe887ed9af4603ee1ae03 (patch) | |
tree | 6d6123e2af648df632eb3209d20291a8dad8035a /src/qml/jsruntime/qv4managed.cpp | |
parent | 393108500832dcefa4c4def442a08f20d3fbc4cd (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 <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4managed.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4managed.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/jsruntime/qv4managed.cpp b/src/qml/jsruntime/qv4managed.cpp index 60f6b7dbab..ec349702d6 100644 --- a/src/qml/jsruntime/qv4managed.cpp +++ b/src/qml/jsruntime/qv4managed.cpp @@ -54,10 +54,11 @@ const ManagedVTable Managed::static_vtbl = Managed::IsErrorObject, 0, Managed::MyType, + "Managed", + destroy, + 0 /*markObjects*/, call, construct, - 0 /*markObjects*/, - destroy, 0 /*collectDeletables*/, 0, 0, @@ -71,8 +72,7 @@ const ManagedVTable Managed::static_vtbl = 0, isEqualTo, 0, - 0, - "Managed", + 0 }; |