aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlboundsignal_p.h
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2021-06-08 17:30:14 +0200
committerUlf Hermann <ulf.hermann@qt.io>2021-06-08 17:40:34 +0200
commit95b448bf89575dfd79ca071ebfeab8960eff6864 (patch)
treeaa95baf0c30f6c565bf83ca43471fb6b1170025e /src/qml/qml/qqmlboundsignal_p.h
parent50fe714078db85eca99be374847d2e0807bc8108 (diff)
Remove pointless evaluate() method
We never want to evaluate with a QList<QVariant>. The only place where this was called used an empty list. We can just as well use the call with void** then. Change-Id: I9eb93ee37eecec8b01864cc86174d80e5705986c Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qml/qml/qqmlboundsignal_p.h')
-rw-r--r--src/qml/qml/qqmlboundsignal_p.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlboundsignal_p.h b/src/qml/qml/qqmlboundsignal_p.h
index 075053b95e..0a3229b731 100644
--- a/src/qml/qml/qqmlboundsignal_p.h
+++ b/src/qml/qml/qqmlboundsignal_p.h
@@ -79,7 +79,6 @@ public:
// evaluation of a bound signal expression doesn't return any value
void evaluate(void **a);
- void evaluate(const QList<QVariant> &args);
QString expression() const;
const QObject *target() const { return m_target; }