summaryrefslogtreecommitdiffstats
path: root/src/render/frontend
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2019-03-06 12:36:12 +0100
committerKai Koehne <kai.koehne@qt.io>2019-03-07 08:03:50 +0000
commit534857bed15359797a1edf53fb5bdc33cf4e0897 (patch)
tree7771e9707ad05c97039271d8804f1ad03a052ef4 /src/render/frontend
parent9c0dc42939b2a047709e80d40b18cecf01d4c881 (diff)
QML: Properly revision new signals and slots in 5.13
All new signals, slots, ... available in QML should be revisioned. Change-Id: Ib91c65b2bcd64f93d8f536c6cb534390b8689d05 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/render/frontend')
-rw-r--r--src/render/frontend/qcomputecommand.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render/frontend/qcomputecommand.h b/src/render/frontend/qcomputecommand.h
index ad7f89a4d..f0c251a9b 100644
--- a/src/render/frontend/qcomputecommand.h
+++ b/src/render/frontend/qcomputecommand.h
@@ -76,10 +76,10 @@ public Q_SLOTS:
void setWorkGroupX(int workGroupX);
void setWorkGroupY(int workGroupY);
void setWorkGroupZ(int workGroupZ);
- void setRunType(RunType runType);
+ Q_REVISION(13) void setRunType(RunType runType);
- void trigger(int frameCount = 1);
- void trigger(int workGroupX, int workGroupY, int workGroupZ, int frameCount = 1);
+ Q_REVISION(13) void trigger(int frameCount = 1);
+ Q_REVISION(13) void trigger(int workGroupX, int workGroupY, int workGroupZ, int frameCount = 1);
Q_SIGNALS:
void workGroupXChanged();