From 6aded68111885d4df3d17a1d5f12e538c632af60 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Mon, 2 Apr 2012 16:08:15 +0200 Subject: Deprecate QItemSelectionModel::intersect(). It is already obsolete since the beginning of time (Qt 4.5). Change-Id: Ia2f9d934f0c0bd2038d693a29d1315867a526dfe Reviewed-by: Olivier Goffart --- src/corelib/itemmodels/qitemselectionmodel.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/corelib/itemmodels/qitemselectionmodel.h') diff --git a/src/corelib/itemmodels/qitemselectionmodel.h b/src/corelib/itemmodels/qitemselectionmodel.h index 6f438d8c68..7a8c238184 100644 --- a/src/corelib/itemmodels/qitemselectionmodel.h +++ b/src/corelib/itemmodels/qitemselectionmodel.h @@ -92,9 +92,12 @@ public: } bool intersects(const QItemSelectionRange &other) const; - QItemSelectionRange intersect(const QItemSelectionRange &other) const; // ### Qt 5: make QT4_SUPPORT - inline QItemSelectionRange intersected(const QItemSelectionRange &other) const - { return intersect(other); } +#if QT_DEPRECATED_SINCE(5, 0) + inline QItemSelectionRange intersect(const QItemSelectionRange &other) const + { return intersected(other); } +#endif + QItemSelectionRange intersected(const QItemSelectionRange &other) const; + inline bool operator==(const QItemSelectionRange &other) const { return (tl == other.tl && br == other.br); } -- cgit v1.2.3