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/UserListModel.cpp')
-rw-r--r--src/mumble/UserListModel.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/mumble/UserListModel.cpp b/src/mumble/UserListModel.cpp
index e708ea572..2f5d41596 100644
--- a/src/mumble/UserListModel.cpp
+++ b/src/mumble/UserListModel.cpp
@@ -3,15 +3,20 @@
// 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 "UserListModel.h"
+
#include "Channel.h"
#include "Message.h"
+#include "Utils.h"
-#include <vector>
#include <algorithm>
+#ifdef _MSC_VER
+# include <functional>
+#endif
+
+#include <vector>
+
UserListModel::UserListModel(const MumbleProto::UserList& userList, QObject *parent_)
: QAbstractTableModel(parent_)
, m_legacyMode(false) {