diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-05-28 14:56:47 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-05-28 14:56:47 -0400 |
commit | 79b0a69e09c1a912122e6431ea3c530cc292c690 (patch) | |
tree | 6b4e2a392af15163b091b47b6edaa1f2f00e984b | |
parent | ea3e9e0b84c57df4110ca9e5ccced65c5bbe4611 (diff) |
Add missing QPainterPath include
This is needed to compile with Qt 5.15.
-rw-r--r-- | src/qt/trafficgraphwidget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/trafficgraphwidget.cpp b/src/qt/trafficgraphwidget.cpp index 757648f485..6428fc4daf 100644 --- a/src/qt/trafficgraphwidget.cpp +++ b/src/qt/trafficgraphwidget.cpp @@ -7,6 +7,7 @@ #include <qt/clientmodel.h> #include <QPainter> +#include <QPainterPath> #include <QColor> #include <QTimer> |