1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 16:44:05 +02:00

Who needs consistency anyway. Changed to check if QT_NO_OPENSSL is not defined instead.

This commit is contained in:
Christian Muehlhaeuser
2015-10-09 17:53:52 +02:00
parent 1c99e2abbc
commit de820a722a
6 changed files with 8 additions and 8 deletions

View File

@@ -191,7 +191,7 @@ void QxtHttpServerConnector::writeHeaders(QIODevice* device, const QHttpResponse
device->write(header.toString().toUtf8());
}
#if defined(QT_SECURETRANSPORT) || defined(QT_OPENSSL)
#if defined(QT_SECURETRANSPORT) || !defined(QT_NO_OPENSSL)
/*!
* Creates a QxtHttpsServerConnector with the given \a parent.
*/