aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicktemplates2/qquickstackview_p.h
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2016-06-07 11:31:37 +0200
committerJ-P Nurmi <jpnurmi@qt.io>2016-06-07 11:52:28 +0000
commit67133d609dca4ac845906dfa49176e50ec03135a (patch)
treef3afb94a39c421a880e21c41d2c0f5f545d736ca /src/quicktemplates2/qquickstackview_p.h
parent45a3435a05a082e6ae127051e467ff0d489cbd77 (diff)
Comment out revisions for the newly added attached signals
QML revisioning does not work for attached signals, just like it does not work for grouped properties (QTBUG-33179). We have to comment out the revision macros, but it's nice to leave them in comments to be able to easily grep new stuff in specific revisions. import QtQuick 2.7 import QtQuick.Controls 2.1 Item { StackView.onActivated: { } // "StackView.onActivated" is not available due to component versioning. SwipeView.onIsNextItemChanged: { } // "SwipeView.onIsNextItemChanged" is not available due to component versioning. } Task-number: QTBUG-33179 Change-Id: I67efe5c2032fb2755af174571bef8e367bd45e39 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src/quicktemplates2/qquickstackview_p.h')
-rw-r--r--src/quicktemplates2/qquickstackview_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/quicktemplates2/qquickstackview_p.h b/src/quicktemplates2/qquickstackview_p.h
index 790ac4c5..579a6c7f 100644
--- a/src/quicktemplates2/qquickstackview_p.h
+++ b/src/quicktemplates2/qquickstackview_p.h
@@ -175,10 +175,10 @@ Q_SIGNALS:
void indexChanged();
void viewChanged();
void statusChanged();
- Q_REVISION(1) void activated();
- Q_REVISION(1) void activating();
- Q_REVISION(1) void deactivated();
- Q_REVISION(1) void deactivating();
+ /*Q_REVISION(1)*/ void activated();
+ /*Q_REVISION(1)*/ void activating();
+ /*Q_REVISION(1)*/ void deactivated();
+ /*Q_REVISION(1)*/ void deactivating();
private:
Q_DISABLE_COPY(QQuickStackAttached)