summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/itemmodels/qitemselectionmodel
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2020-07-30 22:42:31 +0200
committerLars Knoll <lars.knoll@qt.io>2020-08-24 00:17:03 +0200
commited8acbeb7c6fd137486b5c8a6eec58a3b9db862c (patch)
treed92c3f06a07082e2cc40be366faac8bc58b82def /tests/auto/corelib/itemmodels/qitemselectionmodel
parent5282545589244c1a3e01442e3586d5666213f76d (diff)
Automatically register data/debug stream operations in QMetaType
And remove the old manual registration code for those operators. Add some special handling for long/ulong, as these types could be streamed as a QVariant so far, but are not directly streamable through QDataStream. [ChangeLog][QtCore][QMetaType] The QMetaType::registerStreamOperators() and QMetaType::registerDebugStreamOperator() methods have been removed. The streaming operators for a type are now automatically registered together with the type registration. This implies that the operators should be visible wherever the type is visible and being used. [ChangeLog][Behavior Incompatible Changes] Because the QDataStream and QDebug serialization operators are automatically registered with QMetaType, the declarations of those functions must be present at any point where the type is used with QMetaType and QVariant. Change-Id: I4a0732651b20319af4a8397ff90b848ca4580d99 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'tests/auto/corelib/itemmodels/qitemselectionmodel')
-rw-r--r--tests/auto/corelib/itemmodels/qitemselectionmodel/tst_qitemselectionmodel.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/corelib/itemmodels/qitemselectionmodel/tst_qitemselectionmodel.cpp b/tests/auto/corelib/itemmodels/qitemselectionmodel/tst_qitemselectionmodel.cpp
index 6b59a6f1af..3185dbcaf4 100644
--- a/tests/auto/corelib/itemmodels/qitemselectionmodel/tst_qitemselectionmodel.cpp
+++ b/tests/auto/corelib/itemmodels/qitemselectionmodel/tst_qitemselectionmodel.cpp
@@ -106,6 +106,8 @@ private:
QItemSelectionModel *selection;
};
+QT_BEGIN_NAMESPACE
+
QDataStream &operator<<(QDataStream &, const QModelIndex &);
QDataStream &operator>>(QDataStream &, QModelIndex &);
QDataStream &operator<<(QDataStream &, const QModelIndexList &);
@@ -178,6 +180,8 @@ QDataStream &operator>>(QDataStream &s, QModelIndexList &output)
return s;
}
+QT_END_NAMESPACE
+
tst_QItemSelectionModel::tst_QItemSelectionModel()
: model(0), selection(0)
{