summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikko Gronoff <mikko.gronoff@qt.io>2020-03-17 13:03:16 +0200
committerMikko Gronoff <mikko.gronoff@qt.io>2020-03-17 11:07:55 +0000
commit11ff88fca3c0b41dbccfdbf65bd19ed2dce576b2 (patch)
treee18aa0354ab3edd85aa18ed2a30f5841211be1a5
parent5058c4b7cbbeace3136dac6ead31d4aacfb0a877 (diff)
Fix missing include for QPainterPath
Fix for error: aggregate 'QPainterPath path' has incomplete type and cannot be defined Change-Id: I588107c89e46fe5077a6360f8ececfb737023eb3 Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
-rw-r--r--src/imageproviders.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/imageproviders.cpp b/src/imageproviders.cpp
index cbf019e..bd3bb60 100644
--- a/src/imageproviders.cpp
+++ b/src/imageproviders.cpp
@@ -33,6 +33,7 @@
#include <QPen>
#include <QBrush>
#include <QPainter>
+#include <QPainterPath>
#include <QLinearGradient>
static const int CORNER_CUTSIZE = 20;