diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-09-10 00:02:02 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-09-10 00:02:02 +0200 |
commit | db5816b0a20aac63fb97188ea2034903db254bfa (patch) | |
tree | 56f45bfe3d74932dbaab4ff8c89da21544bcb10f /logic/GZip.h | |
parent | a1fd50e920eba0f198b898e5df4ff5f60424d355 (diff) | |
download | MultiMC-db5816b0a20aac63fb97188ea2034903db254bfa.tar MultiMC-db5816b0a20aac63fb97188ea2034903db254bfa.tar.gz MultiMC-db5816b0a20aac63fb97188ea2034903db254bfa.tar.lz MultiMC-db5816b0a20aac63fb97188ea2034903db254bfa.tar.xz MultiMC-db5816b0a20aac63fb97188ea2034903db254bfa.zip |
GH-1227 fix zlib nonsense on Windows
Diffstat (limited to 'logic/GZip.h')
-rw-r--r-- | logic/GZip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/GZip.h b/logic/GZip.h index 7ccf1d38..30f4f9b5 100644 --- a/logic/GZip.h +++ b/logic/GZip.h @@ -6,6 +6,6 @@ class MULTIMC_LOGIC_EXPORT GZip { public: - static bool inflate(const QByteArray &compressedBytes, QByteArray &uncompressedBytes); + static bool decompress(const QByteArray &compressedBytes, QByteArray &uncompressedBytes); }; |