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
*/
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
};