Change order of GFormatSizeFlags

David requested that I change the order of the flags.

Also, assign numerical values to the flags in the usual way.  This
wasn't a bug yet, but only by chance.
This commit is contained in:
Ryan Lortie 2011-07-20 21:49:16 +02:00
parent c26462ab98
commit 8cadef1a88
2 changed files with 6 additions and 6 deletions

View File

@ -1826,15 +1826,15 @@ g_format_size (guint64 size)
/**
* GFormatSizeFlags:
* @G_FORMAT_SIZE_DEFAULT: behave the same as g_format_size()
* @G_FORMAT_SIZE_LONG_FORMAT: include the exact number of bytes as part
* of the returned string. For example,
* "45.6 kB (45,612 bytes)".
* @G_FORMAT_SIZE_IEC_UNITS: use IEC (base 1024) units with "KiB"-style
* suffixes. IEC units should only be used
* for reporting things with a strong "power
* of 2" basis, like RAM sizes or RAID stripe
* sizes. Network and storage sizes should
* be reported in the normal SI units.
* @G_FORMAT_SIZE_LONG_FORMAT: include the exact number of bytes as part
* of the returned string. For example,
* "45.6 kB (45,612 bytes)".
*
* Flags to modify the format of the string returned by
* g_format_size_full().

View File

@ -112,9 +112,9 @@ gint g_file_open_tmp (const gchar *tmpl,
typedef enum
{
G_FORMAT_SIZE_DEFAULT,
G_FORMAT_SIZE_IEC_UNITS,
G_FORMAT_SIZE_LONG_FORMAT
G_FORMAT_SIZE_DEFAULT = 0,
G_FORMAT_SIZE_LONG_FORMAT = 1 << 0,
G_FORMAT_SIZE_IEC_UNITS = 1 << 1
} GFormatSizeFlags;
gchar * g_format_size_full (guint64 size,