aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlvmemetaobject_p.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2016-05-23 14:39:01 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2016-05-24 14:08:18 +0000
commit70c536b0473529710d36f32e516e6d962a0cb3dc (patch)
tree9d1e41dde8a8a015f74e0068799d31faa4bcb53f /src/qml/qml/qqmlvmemetaobject_p.h
parent641beae32735a39b861252be859b5381b5158fcc (diff)
Get rid of QQmlVMEMetaData::AliasData
The remaining signal index for the changed signal of the alias target is something that we need only once (when doing the initial alias endpoint connection) and then we can retrieve it from the property cache. Change-Id: Ifbd4625f9af3ca00c9b916eee5c82f58450d54ef Reviewed-by: Lars Knoll <lars.knoll@theqtcompany.com>
Diffstat (limited to 'src/qml/qml/qqmlvmemetaobject_p.h')
-rw-r--r--src/qml/qml/qqmlvmemetaobject_p.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/qml/qml/qqmlvmemetaobject_p.h b/src/qml/qml/qqmlvmemetaobject_p.h
index f9f9ec47af..d8c3b9a248 100644
--- a/src/qml/qml/qqmlvmemetaobject_p.h
+++ b/src/qml/qml/qqmlvmemetaobject_p.h
@@ -78,14 +78,6 @@ struct QQmlVMEMetaData
{
// Make sure this structure is always aligned to int
int dummy;
-
- struct AliasData {
- int notifySignal;
- };
-
- AliasData *aliasData() const {
- return (AliasData *)(((char *)const_cast<QQmlVMEMetaData *>(this)) + sizeof(QQmlVMEMetaData));
- }
};
class QQmlVMEMetaObject;