From: Francesco Montorsi Date: Sat, 27 Sep 2008 10:58:15 +0000 (+0000) Subject: give a name to wxZlib enums to make it easier to document them X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/75bc3a0d80003160057e13084913ce1c25e7be01?ds=inline give a name to wxZlib enums to make it easier to document them git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55910 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/zstream.h b/include/wx/zstream.h index f662277d18..d6c473080b 100644 --- a/include/wx/zstream.h +++ b/include/wx/zstream.h @@ -18,7 +18,7 @@ #include "wx/stream.h" // Compression level -enum { +enum wxZlibCompressionLevels { wxZ_DEFAULT_COMPRESSION = -1, wxZ_NO_COMPRESSION = 0, wxZ_BEST_SPEED = 1, @@ -26,7 +26,7 @@ enum { }; // Flags -enum { +enum wxZLibFlags { wxZLIB_NO_HEADER = 0, // raw deflate stream, no header or checksum wxZLIB_ZLIB = 1, // zlib header and checksum wxZLIB_GZIP = 2, // gzip header and checksum, requires zlib 1.2.1+