Fix an example. (#164269, Sebastian Bacher)

2005-01-16  Matthias Clasen  <mclasen@redhat.com>

	* gobject/tmpl/enumerations_flags.sgml: Fix an
	example.  (#164269, Sebastian Bacher)

2
This commit is contained in:
Matthias Clasen 2005-01-17 03:16:29 +00:00 committed by Matthias Clasen
parent 68bf100001
commit 56396d4897
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-01-16 Matthias Clasen <mclasen@redhat.com>
* gobject/tmpl/enumerations_flags.sgml: Fix an
example. (#164269, Sebastian Bacher)
2005-01-07 Matthias Clasen <mclasen@redhat.com>
* === Released 2.6.1 ===

View File

@ -254,7 +254,8 @@ my_enum_complete_type_info (GTypePlugin *plugin,
{
static const GEnumValue values[] = {
{ MY_ENUM_FOO, "MY_ENUM_FOO", "foo" },
{ MY_ENUM_BAR, "MY_ENUM_BAR", "bar" }
{ MY_ENUM_BAR, "MY_ENUM_BAR", "bar" },
{ 0, NULL, NULL }
};
g_enum_complete_type_info (type, info, values);