aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlboundsignal_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-05-03 19:55:42 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-06-18 08:51:35 +0000
commit66fa2b979632d87f0ac9b3f1455df66411984670 (patch)
treedc723a2580c4cc99e2349801cdb98efa75024c17 /src/qml/qml/qqmlboundsignal_p.h
parent3488569817c8cf4bbfbdc95f0e0f6bfab3d9ab3e (diff)
Save another pointer in QQmlBoundSignal
isEvaluating is not really needed as it's tightly coupled to the isNotifying flag in the parent class. Use that instead, to get rid of it. Change-Id: Ic7274ac54e4d380567522c8a549b98d5ed1a1798 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/qml/qqmlboundsignal_p.h')
-rw-r--r--src/qml/qml/qqmlboundsignal_p.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/qml/qml/qqmlboundsignal_p.h b/src/qml/qml/qqmlboundsignal_p.h
index 32e5a9c18c..77337ccd81 100644
--- a/src/qml/qml/qqmlboundsignal_p.h
+++ b/src/qml/qml/qqmlboundsignal_p.h
@@ -109,8 +109,6 @@ public:
QQmlBoundSignalExpressionPointer setExpression(QQmlBoundSignalExpression *);
QQmlBoundSignalExpressionPointer takeExpression(QQmlBoundSignalExpression *);
- bool isEvaluating() const { return m_isEvaluating; }
-
private:
friend void QQmlBoundSignal_callback(QQmlNotifierEndpoint *, void **);
friend class QQmlPropertyPrivate;
@@ -123,7 +121,6 @@ private:
QQmlBoundSignal *m_nextSignal;
QQmlBoundSignalExpressionPointer m_expression;
- bool m_isEvaluating;
};
QT_END_NAMESPACE