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:
Diffstat (limited to 'src/mumble/Database.cpp')
-rw-r--r--src/mumble/Database.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mumble/Database.cpp b/src/mumble/Database.cpp
index b59678c4b..941bb8080 100644
--- a/src/mumble/Database.cpp
+++ b/src/mumble/Database.cpp
@@ -3,15 +3,19 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "mumble_pch.hpp"
-
#include "Database.h"
#include "Global.h"
#include "Message.h"
+#include "MumbleApplication.h"
#include "Net.h"
+#include "Utils.h"
#include "Version.h"
+#include <QtCore/QStandardPaths>
+#include <QtSql/QSqlError>
+#include <QtSql/QSqlQuery>
+#include <QtWidgets/QMessageBox>
static void logSQLError(const QSqlQuery &query) {
const QSqlError error(query.lastQuery());