1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-09 15:47:38 +02:00

[qxt] incomingConnection has a different signature

This commit is contained in:
Uwe L. Korn
2014-06-27 04:36:10 +01:00
parent 99fb4f6305
commit 263f5480e2
2 changed files with 9 additions and 0 deletions

View File

@@ -61,7 +61,11 @@ public:
bool autoEncrypt() const;
protected:
#if QT_VERSION >= QT_VERSION_CHECK( 5, 0, 0 )
virtual void incomingConnection(qintptr socketDescriptor);
#else
virtual void incomingConnection(int socketDescriptor);
#endif
private:
QXT_DECLARE_PRIVATE(QxtSslServer)