diff options
author | Marc Mutz <[email protected]> | 2025-07-04 10:57:02 +0200 |
---|---|---|
committer | Marc Mutz <[email protected]> | 2025-07-04 11:38:52 +0200 |
commit | 944aa03deacbac708325eb4ac17e601f1fad498f (patch) | |
tree | 5ae587ae73d351a24a35321492a02e1799d058df | |
parent | e81b5d59ad405208f20636cfddcaab330d37f0d2 (diff) |
qmatrix4x4.h will lose its qquaternion.h include, so include
qquaternion.h explicitly in all files that mention 'QQuaternion',
unless, for a foo.cpp, the own foo.h has already included it.
Amends 6637773cbd9bfb9c5409f25ac794480236e4e460.
Pick-to: 6.10 6.9 6.8
Change-Id: I114f58d1d443164eb419dab98623d06044419a81
Reviewed-by: Alexey Edelev <[email protected]>
-rw-r--r-- | tests/auto/protobufqttypes/qtprotobufqttypesguitest.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/protobufqttypes/qtprotobufqttypesguitest.cpp b/tests/auto/protobufqttypes/qtprotobufqttypesguitest.cpp index 29dfe725..4eb7f97a 100644 --- a/tests/auto/protobufqttypes/qtprotobufqttypesguitest.cpp +++ b/tests/auto/protobufqttypes/qtprotobufqttypesguitest.cpp @@ -9,10 +9,13 @@ #include <QProtobufSerializer> #include <QObject> + #include <QtGui/qrgb.h> #include <QtGui/QPainter> #include <QtGui/QColor> #include <QtGui/QRgba64> +#include <QtGui/qquaternion.h> + #include <QtTest/QtTest> #include <memory> |