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:
authorDavide Beatrici <davidebeatrici@gmail.com>2019-03-23 08:26:15 +0300
committerDavide Beatrici <davidebeatrici@gmail.com>2019-09-12 01:13:35 +0300
commit5a07244a449592a143a628fde9b84846ee82e0ff (patch)
tree28d4f105d26c4bf86c89b2e98452b5fb77621013 /src/murmur
parent713b92c3c233f8f38200c4a458e0196d3d39a3b0 (diff)
Don't include PCH headers directly
According to Qt's documentation the PCH header doesn't need to be included. From https://doc.qt.io/qt-5/qmake-precompiledheaders.html: "To make your project use precompiled headers, you only need to define the PRECOMPILED_HEADER variable in your project file." "qmake will handle the rest, to ensure the creation and use of the precompiled header file. You do not need to include the precompiled header file in HEADERS, as qmake will do this if the configuration supports precompiled headers."
Diffstat (limited to 'src/murmur')
-rw-r--r--src/murmur/About.cpp2
-rw-r--r--src/murmur/BonjourServer.cpp2
-rw-r--r--src/murmur/Cert.cpp2
-rw-r--r--src/murmur/DBus.cpp2
-rw-r--r--src/murmur/Messages.cpp2
-rw-r--r--src/murmur/Meta.cpp2
-rw-r--r--src/murmur/MurmurGRPCImpl.cpp2
-rw-r--r--src/murmur/MurmurIce.cpp2
-rw-r--r--src/murmur/PBKDF2.cpp2
-rw-r--r--src/murmur/RPC.cpp2
-rw-r--r--src/murmur/Register.cpp2
-rw-r--r--src/murmur/Server.cpp2
-rw-r--r--src/murmur/ServerDB.cpp2
-rw-r--r--src/murmur/ServerUser.cpp2
-rw-r--r--src/murmur/Tray.cpp2
-rw-r--r--src/murmur/UnixMurmur.cpp2
-rw-r--r--src/murmur/main.cpp2
17 files changed, 0 insertions, 34 deletions
diff --git a/src/murmur/About.cpp b/src/murmur/About.cpp
index 8f4aaf12c..49b0f2c20 100644
--- a/src/murmur/About.cpp
+++ b/src/murmur/About.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#if QT_VERSION >= 0x050000
# include <QtWidgets/QApplication>
#else
diff --git a/src/murmur/BonjourServer.cpp b/src/murmur/BonjourServer.cpp
index edb2ab89b..b92d882b3 100644
--- a/src/murmur/BonjourServer.cpp
+++ b/src/murmur/BonjourServer.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#include "BonjourServer.h"
#include "BonjourServiceRegister.h"
diff --git a/src/murmur/Cert.cpp b/src/murmur/Cert.cpp
index 1f102bc26..812e77c0a 100644
--- a/src/murmur/Cert.cpp
+++ b/src/murmur/Cert.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#include "Meta.h"
#include "Server.h"
#include "SelfSignedCertificate.h"
diff --git a/src/murmur/DBus.cpp b/src/murmur/DBus.cpp
index 9aa2628dc..3423c221f 100644
--- a/src/murmur/DBus.cpp
+++ b/src/murmur/DBus.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#include "DBus.h"
#include "Connection.h"
diff --git a/src/murmur/Messages.cpp b/src/murmur/Messages.cpp
index aa07064cb..70158444c 100644
--- a/src/murmur/Messages.cpp
+++ b/src/murmur/Messages.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#include "User.h"
#include "Channel.h"
#include "ACL.h"
diff --git a/src/murmur/Meta.cpp b/src/murmur/Meta.cpp
index 2c7ca7672..ac2daaeff 100644
--- a/src/murmur/Meta.cpp
+++ b/src/murmur/Meta.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#include "Meta.h"
#include "Connection.h"
diff --git a/src/murmur/MurmurGRPCImpl.cpp b/src/murmur/MurmurGRPCImpl.cpp
index f4a7f6946..aec6b1d45 100644
--- a/src/murmur/MurmurGRPCImpl.cpp
+++ b/src/murmur/MurmurGRPCImpl.cpp
@@ -7,8 +7,6 @@
# include <boost/function.hpp>
#endif
-#include "murmur_pch.h"
-
#include "Mumble.pb.h"
#include "../Message.h"
diff --git a/src/murmur/MurmurIce.cpp b/src/murmur/MurmurIce.cpp
index 1160faad5..8a66a0e98 100644
--- a/src/murmur/MurmurIce.cpp
+++ b/src/murmur/MurmurIce.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#include "MurmurIce.h"
#include <limits>
diff --git a/src/murmur/PBKDF2.cpp b/src/murmur/PBKDF2.cpp
index e521b5112..2e69b7714 100644
--- a/src/murmur/PBKDF2.cpp
+++ b/src/murmur/PBKDF2.cpp
@@ -34,8 +34,6 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "murmur_pch.h"
-
#include "PBKDF2.h"
int PBKDF2::benchmark() {
diff --git a/src/murmur/RPC.cpp b/src/murmur/RPC.cpp
index ff62bad9d..9a4060cb6 100644
--- a/src/murmur/RPC.cpp
+++ b/src/murmur/RPC.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#include "Channel.h"
#include "Group.h"
#include "Meta.h"
diff --git a/src/murmur/Register.cpp b/src/murmur/Register.cpp
index 444030a16..65860b74a 100644
--- a/src/murmur/Register.cpp
+++ b/src/murmur/Register.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#include "Server.h"
#include "Meta.h"
#include "Version.h"
diff --git a/src/murmur/Server.cpp b/src/murmur/Server.cpp
index 9a3872f98..db89667fd 100644
--- a/src/murmur/Server.cpp
+++ b/src/murmur/Server.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#include "Server.h"
#include "ACL.h"
diff --git a/src/murmur/ServerDB.cpp b/src/murmur/ServerDB.cpp
index 07b7b3e00..8966540e0 100644
--- a/src/murmur/ServerDB.cpp
+++ b/src/murmur/ServerDB.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#include "ServerDB.h"
#include "ACL.h"
diff --git a/src/murmur/ServerUser.cpp b/src/murmur/ServerUser.cpp
index d7f77297f..6646ef940 100644
--- a/src/murmur/ServerUser.cpp
+++ b/src/murmur/ServerUser.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#include "Server.h"
#include "ServerUser.h"
#include "Meta.h"
diff --git a/src/murmur/Tray.cpp b/src/murmur/Tray.cpp
index cf9a4751c..47d17de8a 100644
--- a/src/murmur/Tray.cpp
+++ b/src/murmur/Tray.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#include "Tray.h"
#include "About.h"
diff --git a/src/murmur/UnixMurmur.cpp b/src/murmur/UnixMurmur.cpp
index 16098fe14..1f29d39f1 100644
--- a/src/murmur/UnixMurmur.cpp
+++ b/src/murmur/UnixMurmur.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#include "UnixMurmur.h"
#include "Meta.h"
diff --git a/src/murmur/main.cpp b/src/murmur/main.cpp
index b66dc3668..61529e28a 100644
--- a/src/murmur/main.cpp
+++ b/src/murmur/main.cpp
@@ -3,8 +3,6 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "murmur_pch.h"
-
#ifdef Q_OS_WIN
#include "Tray.h"
#include "About.h"