aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmllocale_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqmllocale_p.h')
-rw-r--r--src/qml/qml/qqmllocale_p.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/qml/qml/qqmllocale_p.h b/src/qml/qml/qqmllocale_p.h
index cafe448313..5e095a7e06 100644
--- a/src/qml/qml/qqmllocale_p.h
+++ b/src/qml/qml/qqmllocale_p.h
@@ -131,7 +131,14 @@ private:
class QQmlLocaleData : public QV4::Object
{
- V4_OBJECT
+ struct Data : QV4::Object::Data {
+ QLocale locale;
+ };
+ struct {
+ QLocale locale;
+ } __data;
+
+ V4_OBJECT_NEW
public:
QQmlLocaleData(QV4::ExecutionEngine *engine)
: QV4::Object(engine)
@@ -139,7 +146,6 @@ public:
setVTable(staticVTable());
}
- QLocale locale;
static QLocale *getThisLocale(QV4::CallContext *ctx) {
QQmlLocaleData *thisObject = ctx->callData->thisObject.asObject()->as<QQmlLocaleData>();
@@ -147,7 +153,7 @@ public:
ctx->throwTypeError();
return 0;
}
- return &thisObject->locale;
+ return &thisObject->d()->locale;
}
static QV4::ReturnedValue method_currencySymbol(QV4::CallContext *ctx);