mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-20 04:41:36 +02:00
Who needs consistency anyway. Changed to check if QT_NO_OPENSSL is not defined instead.
This commit is contained in:
@@ -41,7 +41,7 @@
|
||||
#include <QMultiHash>
|
||||
#include <QDateTime>
|
||||
#include <QHostAddress>
|
||||
#if defined(QT_SECURETRANSPORT) || defined(QT_OPENSSL)
|
||||
#if defined(QT_SECURETRANSPORT) || !defined(QT_NO_OPENSSL)
|
||||
#include <QSslCertificate>
|
||||
#endif
|
||||
QT_FORWARD_DECLARE_CLASS(QIODevice)
|
||||
@@ -89,7 +89,7 @@ public:
|
||||
QString method;
|
||||
QHostAddress remoteAddress;
|
||||
bool isSecure;
|
||||
#if defined(QT_SECURETRANSPORT) || defined(QT_OPENSSL)
|
||||
#if defined(QT_SECURETRANSPORT) || !defined(QT_NO_OPENSSL)
|
||||
QSslCertificate clientCertificate;
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user