aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2014-02-14 13:58:40 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-23 09:39:52 +0100
commitcad3ba5fd44c09455c2492548865a8743386ea18 (patch)
tree9cbd5d37b414f0585dac61feac65f542e40c143e /tools
parent7dbb49bdec6e74f9d1eb096d15bdeea0881c3704 (diff)
Clean up our internal namespaces
QQmlJS::MASM -> QV4::JIT QQmlJS::V4IR -> QV4::IR Change-Id: I707e8990459114a699c200fe3c22cec3c8df1afc Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/qmljs/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/qmljs/main.cpp b/tools/qmljs/main.cpp
index c5c94773b9..f13f42881c 100644
--- a/tools/qmljs/main.cpp
+++ b/tools/qmljs/main.cpp
@@ -174,12 +174,12 @@ int main(int argc, char *argv[])
switch (mode) {
case use_masm:
case use_moth: {
- QQmlJS::EvalISelFactory* iSelFactory = 0;
+ QV4::EvalISelFactory* iSelFactory = 0;
if (mode == use_moth) {
- iSelFactory = new QQmlJS::Moth::ISelFactory;
+ iSelFactory = new QV4::Moth::ISelFactory;
#ifdef V4_ENABLE_JIT
} else {
- iSelFactory = new QQmlJS::MASM::ISelFactory;
+ iSelFactory = new QV4::JIT::ISelFactory;
#endif // V4_ENABLE_JIT
}