From: Vadim Zeitlin Date: Wed, 7 Apr 2010 10:50:37 +0000 (+0000) Subject: Correct documentation of wxSizeConvention elements. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/72822505f7efea39309ada85bc9a9a894c666667 Correct documentation of wxSizeConvention elements. 1KiB is 1024 bytes, not 1000. Also put the elements in the correct order (same as in the real header). See #10673. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63890 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/filename.h b/interface/wx/filename.h index 1b098a6acb..0e78b2d38f 100644 --- a/interface/wx/filename.h +++ b/interface/wx/filename.h @@ -37,14 +37,14 @@ enum wxPathFormat */ enum wxSizeConvention { - /// 1000 bytes = 1KiB. + /// 1024 bytes = 1KB. + wxSIZE_CONV_TRADITIONAL, + + /// 1024 bytes = 1KiB. wxSIZE_CONV_IEC, /// 1000 bytes = 1KB. - wxSIZE_CONV_SI, - - /// 1024 bytes = 1KB. - wxSIZE_CONV_TRADITIONAL + wxSIZE_CONV_SI };