aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2020-03-09 13:52:20 +0100
committerUlf Hermann <ulf.hermann@qt.io>2020-03-09 14:30:35 +0100
commit508a8baf850dbad59fc0578356d1a9327f27e911 (patch)
tree785c24e2f34d4cd8b95b337e0e1f0d70c79bfca9 /tools
parente03a30ecec099e8b5dbe50ebde8d4bb56413eb81 (diff)
Add missing QPainterPath includes
Apparently QPainterPath was transitively included from some other header before. With current qtbase, it is not anymore and the old code fails to compile. Change-Id: I2de3cd72e3cd33a4537f8156298fc757182907fa Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'tools')
-rw-r--r--tools/qmleasing/splineeditor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/qmleasing/splineeditor.cpp b/tools/qmleasing/splineeditor.cpp
index e4d4562bee..c1afbbb441 100644
--- a/tools/qmleasing/splineeditor.cpp
+++ b/tools/qmleasing/splineeditor.cpp
@@ -36,6 +36,7 @@
#include <QDebug>
#include <QApplication>
#include <QVector>
+#include <QPainterPath>
const int canvasWidth = 640;
const int canvasHeight = 320;