aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4object_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2014-04-30 20:55:41 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2014-07-22 13:49:10 +0200
commitc9081fab7c63e50d2a3b7cfe3e78110a5922dc29 (patch)
tree81bdde5b1239a429a0633d5d7de20a9beb6286e3 /src/qml/jsruntime/qv4object_p.h
parentd44cac4028df512b37b161e9f3fc9f7ba1c504bc (diff)
Rename Managed::managedData() to d() to be consistent
No need to differentiate in the name anymore, as the data structures all inherit from each other now. Change-Id: Ia41f50ce4e521f9626d874311ceb57e0e194888b Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4object_p.h')
-rw-r--r--src/qml/jsruntime/qv4object_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/jsruntime/qv4object_p.h b/src/qml/jsruntime/qv4object_p.h
index f86b709090..f4b23d8cb3 100644
--- a/src/qml/jsruntime/qv4object_p.h
+++ b/src/qml/jsruntime/qv4object_p.h
@@ -186,11 +186,11 @@ struct Q_QML_EXPORT Object: Managed {
inline ExecutionEngine *engine() const { return internalClass()->engine; }
- inline bool hasAccessorProperty() const { return managedData()->hasAccessorProperty; }
- inline void setHasAccessorProperty() { managedData()->hasAccessorProperty = true; }
+ inline bool hasAccessorProperty() const { return d()->hasAccessorProperty; }
+ inline void setHasAccessorProperty() { d()->hasAccessorProperty = true; }
- bool isExtensible() const { return managedData()->extensible; }
- void setExtensible(bool b) { managedData()->extensible = b; }
+ bool isExtensible() const { return d()->extensible; }
+ void setExtensible(bool b) { d()->extensible = b; }
// Array handling