aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlvaluetypewrapper_p.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2014-11-18 17:15:10 +0100
committerSimon Hausmann <simon.hausmann@digia.com>2014-12-23 05:44:53 +0100
commit8906d90d8f9d4b6bc39bc6bda25e8d300c2f83c0 (patch)
tree75ba2e244d389d88912381d03426271b3cf11b3e /src/qml/qml/qqmlvaluetypewrapper_p.h
parent5adb406bddd8419c2987cec48eb86a0d4ca0260a (diff)
Cleanup: Fix value type wrapper class name
It's supposed to be QQmlFoo instead of QmlFoo. While all this code is being touched, we might as well fix the name. Change-Id: Ia8be0c6ec46e114f7559c1e7a07a9d368932999e Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/qml/qqmlvaluetypewrapper_p.h')
-rw-r--r--src/qml/qml/qqmlvaluetypewrapper_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/qml/qqmlvaluetypewrapper_p.h b/src/qml/qml/qqmlvaluetypewrapper_p.h
index 4946c13e42..e1c71c24d3 100644
--- a/src/qml/qml/qqmlvaluetypewrapper_p.h
+++ b/src/qml/qml/qqmlvaluetypewrapper_p.h
@@ -60,9 +60,9 @@ namespace QV4 {
namespace Heap {
-struct QmlValueTypeWrapper : Object {
+struct QQmlValueTypeWrapper : Object {
enum ObjectType { Reference, Copy };
- QmlValueTypeWrapper(QV8Engine *engine, ObjectType type);
+ QQmlValueTypeWrapper(QV8Engine *engine, ObjectType type);
QV8Engine *v8;
ObjectType objectType;
mutable QScopedPointer<QQmlValueType> type;
@@ -70,9 +70,9 @@ struct QmlValueTypeWrapper : Object {
}
-struct Q_QML_EXPORT QmlValueTypeWrapper : Object
+struct Q_QML_EXPORT QQmlValueTypeWrapper : Object
{
- V4_OBJECT2(QmlValueTypeWrapper, Object)
+ V4_OBJECT2(QQmlValueTypeWrapper, Object)
static void destroy(Heap::Base *b);
public: