aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/v4vm/qv4engine.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2013-04-15 11:50:16 +0200
committerLars Knoll <lars.knoll@digia.com>2013-04-15 13:03:20 +0200
commit891f7029457c5135c365ec32c06e7750abaceeab (patch)
tree0bf15a932ea3176b7b7da2fd6276c00e1da9d9b5 /src/qml/qml/v4vm/qv4engine.cpp
parentdb78a10ea2537141e58740bd179db19183d236e8 (diff)
Fix compilation with built-in v4vm JS engine
Change-Id: Ieda9267e296acf6392a5461f4cfb9233a7a409a0 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/qml/v4vm/qv4engine.cpp')
-rw-r--r--src/qml/qml/v4vm/qv4engine.cpp44
1 files changed, 22 insertions, 22 deletions
diff --git a/src/qml/qml/v4vm/qv4engine.cpp b/src/qml/qml/v4vm/qv4engine.cpp
index 7d5c79f333..a81b492345 100644
--- a/src/qml/qml/v4vm/qv4engine.cpp
+++ b/src/qml/qml/v4vm/qv4engine.cpp
@@ -38,29 +38,29 @@
** $QT_END_LICENSE$
**
****************************************************************************/
-#include <qv4engine.h>
-#include <qv4value.h>
-#include <qv4object.h>
-#include <qv4objectproto.h>
-#include <qv4arrayobject.h>
-#include <qv4booleanobject.h>
-#include <qv4globalobject.h>
-#include <qv4errorobject.h>
-#include <qv4functionobject.h>
-#include <qv4mathobject.h>
-#include <qv4numberobject.h>
-#include <qv4regexpobject.h>
-#include <qv4runtime.h>
-#include "qv4mm.h"
-#include <qv4argumentsobject.h>
-#include <qv4dateobject.h>
-#include <qv4jsonobject.h>
-#include <qv4stringobject.h>
-#include <qv4identifier.h>
-#include <qv4unwindhelper.h>
+#include <qv4engine_p.h>
+#include <qv4value_p.h>
+#include <qv4object_p.h>
+#include <qv4objectproto_p.h>
+#include <qv4arrayobject_p.h>
+#include <qv4booleanobject_p.h>
+#include <qv4globalobject_p.h>
+#include <qv4errorobject_p.h>
+#include <qv4functionobject_p.h>
+#include <qv4mathobject_p.h>
+#include <qv4numberobject_p.h>
+#include <qv4regexpobject_p.h>
+#include <qv4runtime_p.h>
+#include "qv4mm_p.h"
+#include <qv4argumentsobject_p.h>
+#include <qv4dateobject_p.h>
+#include <qv4jsonobject_p.h>
+#include <qv4stringobject_p.h>
+#include <qv4identifier_p.h>
+#include <qv4unwindhelper_p.h>
#include "qv4isel_masm_p.h"
-#include "debugging.h"
-#include "qv4executableallocator.h"
+#include "qv4debugging_p.h"
+#include "qv4executableallocator_p.h"
namespace QQmlJS {
namespace VM {