Change order of GFormatSizeFlags
authorRyan Lortie <desrt@desrt.ca>
Wed, 20 Jul 2011 19:49:16 +0000 (21:49 +0200)
committerRyan Lortie <desrt@desrt.ca>
Wed, 20 Jul 2011 19:50:52 +0000 (21:50 +0200)
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.

glib/gfileutils.c
glib/gfileutils.h

index 81966b8..fc101bd 100644 (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().
index 0e382af..1d7f4dc 100644 (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,