aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlmodels
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2020-02-25 13:32:55 +0100
committerUlf Hermann <ulf.hermann@qt.io>2020-02-27 09:34:20 +0100
commit8dd18850714b9a8e7a51891a2c48f8ca94ffe014 (patch)
tree261d3a1b4c48e9858a6dd3b86404f1758f53fcda /src/qmlmodels
parent63aee8b66712601b6c34e4f2df99614f2d092c9d (diff)
Revision properties and methods added in 5.15
Change-Id: I00e3f9535e819d9d0d547c9d3cf50be469cf9339 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qmlmodels')
-rw-r--r--src/qmlmodels/qqmlobjectmodel_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qmlmodels/qqmlobjectmodel_p.h b/src/qmlmodels/qqmlobjectmodel_p.h
index 7fb4f64676..866d010cd3 100644
--- a/src/qmlmodels/qqmlobjectmodel_p.h
+++ b/src/qmlmodels/qqmlobjectmodel_p.h
@@ -104,8 +104,8 @@ Q_SIGNALS:
void createdItem(int index, QObject *object);
void initItem(int index, QObject *object);
void destroyingItem(QObject *object);
- void itemPooled(int index, QObject *object);
- void itemReused(int index, QObject *object);
+ Q_REVISION(15) void itemPooled(int index, QObject *object);
+ Q_REVISION(15) void itemReused(int index, QObject *object);
protected:
QQmlInstanceModel(QObjectPrivate &dd, QObject *parent = nullptr)