Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2021-11-10 10:50:34 +0300
committerRobert Adam <dev@robert-adam.de>2021-11-10 10:50:34 +0300
commit1fa6909d6ec432c9669f90d2d30d6055c577fe13 (patch)
treedb6b9dc2bb11989d2beba7511a17d50be946f1ed
parent0ee6508ba6569dc73d11eb38dcec4d8b4a69502b (diff)
BUILD(client): Add missing include
Due to this missing include, a build error would occur when compiling without the manual plugin (which presumably caused the include to be resolved indirectly).
-rw-r--r--src/mumble/ServerHandler.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mumble/ServerHandler.cpp b/src/mumble/ServerHandler.cpp
index 399797193..91aa1c2c9 100644
--- a/src/mumble/ServerHandler.cpp
+++ b/src/mumble/ServerHandler.cpp
@@ -31,6 +31,7 @@
#include "Utils.h"
#include "Global.h"
+#include <QPainter>
#include <QtCore/QtEndian>
#include <QtGui/QImageReader>
#include <QtNetwork/QSslConfiguration>