OSDN Git Service

Fix the 'Since' tag for G_SOURCE_{REMOVE,CONTINUE}
authorNeil Roberts <neil@linux.intel.com>
Mon, 2 Jul 2012 12:41:32 +0000 (13:41 +0100)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 14 Jul 2012 20:33:20 +0000 (16:33 -0400)
The Since tag for these was saying 2.28 but it was actually added in
2.31. It looks like all of the Since tags list stable version numbers
so this patch bumps that up to 2.32.

https://bugzilla.gnome.org/show_bug.cgi?id=679258

glib/gmain.h

index cba45fd..fadf7fc 100644 (file)
@@ -266,7 +266,7 @@ struct _GSourceFuncs
  * Use this macro as the return value of a #GSourceFunc to remove
  * the #GSource from the main loop.
  *
- * Since: 2.28
+ * Since: 2.32
  */
 #define G_SOURCE_REMOVE         FALSE
 
@@ -276,7 +276,7 @@ struct _GSourceFuncs
  * Use this macro as the return value of a #GSourceFunc to leave
  * the #GSource in the main loop.
  *
- * Since: 2.28
+ * Since: 2.32
  */
 #define G_SOURCE_CONTINUE       TRUE