diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-05-28 14:56:47 -0400 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2020-06-04 21:56:05 +0000 |
commit | 384d3f991c9bdeec6eb4685df5918877dbbe7634 (patch) | |
tree | ec32c014333624cfe3e66e4e025d37a439e13066 | |
parent | ca0b8acbf38a02f39e313a1c633d577f9bf7d983 (diff) |
Add missing QPainterPath include
This is needed to compile with Qt 5.15.
Github-Pull: #19097
Rebased-From: 79b0a69e09c1a912122e6431ea3c530cc292c690
-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 74565bb6d0..d179e8618b 100644 --- a/src/qt/trafficgraphwidget.cpp +++ b/src/qt/trafficgraphwidget.cpp @@ -6,6 +6,7 @@ #include "clientmodel.h" #include <QPainter> +#include <QPainterPath> #include <QColor> #include <QTimer> |