mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 14:08:03 -06:00
Fix compilation with qt < 4.8.0. Closes #1043.
This commit is contained in:
@@ -123,7 +123,11 @@ QByteArray HttpResponseGenerator::toByteArray() {
|
||||
QByteArray dest_buf;
|
||||
if (gCompress(dest_buf)) {
|
||||
setValue("content-encoding", "gzip");
|
||||
#if QT_VERSION < 0x040800
|
||||
m_message = dest_buf;
|
||||
#else
|
||||
m_message.swap(dest_buf);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user