diff options
author | Marc Mutz <marc.mutz@kdab.com> | 2015-07-05 22:37:40 +0200 |
---|---|---|
committer | Marc Mutz <marc.mutz@kdab.com> | 2016-03-03 16:22:27 +0000 |
commit | 53abb8267bfa4c261a1aa543f1ad50ed0851bcbf (patch) | |
tree | ef7509730372e4d32d7357264252b73728d148fa /src/gui/painting/qpathclipper.cpp | |
parent | e2a7d185647f0aaabb3519f1434161faf3de9857 (diff) | |
download | qtbase-53abb8267bfa4c261a1aa543f1ad50ed0851bcbf.tar.gz |
QtGui: mark some more types as movable/primitive
These are already held in QVectors.
Public API types need to wait until Qt 6, for BC reasons. Even
though Q_RELOCATABLE_TYPE deals with most of them, we lack a way
to mark a type as primitive, but still isStatic - for QList.
Change-Id: I91392b01ae6f94cc847007636e12d4e64c43b2bc
Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@theqtcompany.com>
Diffstat (limited to 'src/gui/painting/qpathclipper.cpp')
-rw-r--r-- | src/gui/painting/qpathclipper.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/painting/qpathclipper.cpp b/src/gui/painting/qpathclipper.cpp index cdc9838dbe..861d651756 100644 --- a/src/gui/painting/qpathclipper.cpp +++ b/src/gui/painting/qpathclipper.cpp @@ -1761,6 +1761,7 @@ struct QCrossingEdge return x < edge.x; } }; +Q_DECLARE_TYPEINFO(QCrossingEdge, Q_PRIMITIVE_TYPE); static bool bool_op(bool a, bool b, QPathClipper::Operation op) { |