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-10-10 04:14:38 +0300
committerDavide Beatrici <davidebeatrici@gmail.com>2019-10-10 04:14:38 +0300
commit1ac534915c54a2a60e181ea8c900643e854dcdbf (patch)
treec8bda07f2ef125182e5b6a9f54b557a29c6f178c /src/murmur/Server.h
parenta50e572e2d5386c35e24d93e14f013531cee79b4 (diff)
Remove remaining Qt 4 stuff
For reference: https://wiki.qt.io/Transition_from_Qt_4.x_to_Qt5
Diffstat (limited to 'src/murmur/Server.h')
-rw-r--r--src/murmur/Server.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/murmur/Server.h b/src/murmur/Server.h
index 79dd87b07..03e0b719b 100644
--- a/src/murmur/Server.h
+++ b/src/murmur/Server.h
@@ -65,11 +65,7 @@ class SslServer : public QTcpServer {
Q_DISABLE_COPY(SslServer)
protected:
QList<QSslSocket *> qlSockets;
-#if QT_VERSION >= 0x050000
void incomingConnection(qintptr) Q_DECL_OVERRIDE;
-#else
- void incomingConnection(int) Q_DECL_OVERRIDE;
-#endif
public:
QSslSocket *nextPendingSSLConnection();
SslServer(QObject *parent = NULL);