diff options
author | Lars Knoll <[email protected]> | 2015-01-10 20:35:18 +0100 |
---|---|---|
committer | Lars Knoll <[email protected]> | 2015-01-21 13:18:38 +0100 |
commit | 85bf8d732b9651ce7b88d5464b8b3aae138e1893 (patch) | |
tree | 321d5a2471be898670a49b7bc942d1f13de4bd58 /src/qml/jsruntime/qv4string.cpp | |
parent | 7ee429dd7a12dc38a4e4af8888325d111883a2ff (diff) |
Remove the remaining bit of code that use the vtable in the internalClass
Change-Id: Ia52f0e6db325aab37477d455f163487b319dce29
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4string.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4string.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4string.cpp b/src/qml/jsruntime/qv4string.cpp index 86624b23bf..ce47fc439e 100644 --- a/src/qml/jsruntime/qv4string.cpp +++ b/src/qml/jsruntime/qv4string.cpp @@ -118,7 +118,7 @@ bool String::isEqualTo(Managed *t, Managed *o) Heap::String::String(ExecutionEngine *engine, const QString &t) - : Heap::Base(engine->stringClass) + : Heap::Base(engine->emptyClass) { subtype = String::StringType_Unknown; @@ -131,7 +131,7 @@ Heap::String::String(ExecutionEngine *engine, const QString &t) } Heap::String::String(ExecutionEngine *engine, String *l, String *r) - : Heap::Base(engine->stringClass) + : Heap::Base(engine->emptyClass) { subtype = String::StringType_Unknown; |