~ubuntu-branches/ubuntu/trusty/librsvg/trusty-proposed

« back to all changes in this revision

Viewing changes to librsvg-enum-types.c

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2012-03-27 01:47:52 UTC
  • mfrom: (1.1.32) (34.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20120327014752-c9vmipiww40cnip7
Tags: 2.36.0-1
* New upstream release.
* Update debian/copyright using the machine-readable copyright format 1.0.
* Bump Standards-Version to 3.9.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
{
24
24
  static GType etype = 0;
25
25
  if (etype == 0) {
26
 
    static const GEnumValue values[] = {
 
26
    static const GFlagsValue values[] = {
27
27
      { RSVG_HANDLE_FLAGS_NONE, "RSVG_HANDLE_FLAGS_NONE", "none" },
28
28
      { 0, NULL, NULL }
29
29
    };
30
 
    etype = g_enum_register_static ("RsvgHandleFlags", values);
 
30
    etype = g_flags_register_static ("RsvgHandleFlags", values);
31
31
  }
32
32
  return etype;
33
33
}