summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qline.cpp
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2020-04-21 21:40:01 +0200
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2020-04-21 21:40:01 +0200
commita15c7260cc83707dcdd05d7d9c23317536601fdc (patch)
tree3f60e05467b1a9f38a692e37a4e44675baf71732 /src/corelib/tools/qline.cpp
parent47eba459905ef884931aa1247c847f7a98a77b28 (diff)
parente10e5318bc02a48a866b76b6f0b7f268d16af642 (diff)
Merge remote-tracking branch 'origin/5.15' into 5.15.0
Diffstat (limited to 'src/corelib/tools/qline.cpp')
-rw-r--r--src/corelib/tools/qline.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/corelib/tools/qline.cpp b/src/corelib/tools/qline.cpp
index 3afd23d76b..40a69173c4 100644
--- a/src/corelib/tools/qline.cpp
+++ b/src/corelib/tools/qline.cpp
@@ -370,11 +370,18 @@ QDataStream &operator>>(QDataStream &stream, QLine &line)
/*!
\enum QLineF::IntersectType
- \obsolete Use QLineF::IntersectionType instead
+ \obsolete Use QLineF::IntersectionType instead.
+
+ \value NoIntersection
+ Lines do not intersect.
+ \value UnboundedIntersection
+ Lines intersect, but not within the range defined by their lengths.
+ \value BoundedIntersection
+ Lnes intersect within the range defined by their lengths.
*/
/*!
- \enum QLineF::IntersectionType
+ \typealias QLineF::IntersectionType
Describes the intersection between two lines.