~ubuntu-branches/ubuntu/utopic/glib2.0/utopic-updates

« back to all changes in this revision

Viewing changes to gio/gioenumtypes.c

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2014-07-17 17:01:51 UTC
  • mfrom: (1.66.16)
  • Revision ID: package-import@ubuntu.com-20140717170151-o3ianrpdr4l1u3qr
Tags: 2.41.2-1~ubuntu1
* Upload from unreleased Debian SVN due to broken pcre3 in unstable.
* New upstream release
  - The Unicode support has been updated to version 7.0 of the Unicode
    standard
  - GNotification now supports priorities for notifications
  - GMutex now uses a faster, native implementation on Linux
* 0001-gvariant-tests-workaround-libc-compiler-issue.patch: Drop, applied
  upstream in this release.
* Add new symbols for this release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1277
1277
        { G_CREDENTIALS_TYPE_INVALID, "G_CREDENTIALS_TYPE_INVALID", "invalid" },
1278
1278
        { G_CREDENTIALS_TYPE_LINUX_UCRED, "G_CREDENTIALS_TYPE_LINUX_UCRED", "linux-ucred" },
1279
1279
        { G_CREDENTIALS_TYPE_FREEBSD_CMSGCRED, "G_CREDENTIALS_TYPE_FREEBSD_CMSGCRED", "freebsd-cmsgcred" },
 
1280
        { G_CREDENTIALS_TYPE_NETBSD_UNPCBID, "G_CREDENTIALS_TYPE_NETBSD_UNPCBID", "netbsd-unpcbid" },
1280
1281
        { G_CREDENTIALS_TYPE_OPENBSD_SOCKPEERCRED, "G_CREDENTIALS_TYPE_OPENBSD_SOCKPEERCRED", "openbsd-sockpeercred" },
1281
1282
        { G_CREDENTIALS_TYPE_SOLARIS_UCRED, "G_CREDENTIALS_TYPE_SOLARIS_UCRED", "solaris-ucred" },
1282
1283
        { 0, NULL, NULL }
1661
1662
  return g_define_type_id__volatile;
1662
1663
}
1663
1664
 
 
1665
GType
 
1666
g_notification_priority_get_type (void)
 
1667
{
 
1668
  static volatile gsize g_define_type_id__volatile = 0;
 
1669
 
 
1670
  if (g_once_init_enter (&g_define_type_id__volatile))
 
1671
    {
 
1672
      static const GEnumValue values[] = {
 
1673
        { G_NOTIFICATION_PRIORITY_NORMAL, "G_NOTIFICATION_PRIORITY_NORMAL", "normal" },
 
1674
        { G_NOTIFICATION_PRIORITY_LOW, "G_NOTIFICATION_PRIORITY_LOW", "low" },
 
1675
        { G_NOTIFICATION_PRIORITY_HIGH, "G_NOTIFICATION_PRIORITY_HIGH", "high" },
 
1676
        { G_NOTIFICATION_PRIORITY_URGENT, "G_NOTIFICATION_PRIORITY_URGENT", "urgent" },
 
1677
        { 0, NULL, NULL }
 
1678
      };
 
1679
      GType g_define_type_id =
 
1680
        g_enum_register_static (g_intern_static_string ("GNotificationPriority"), values);
 
1681
      g_once_init_leave (&g_define_type_id__volatile, g_define_type_id);
 
1682
    }
 
1683
 
 
1684
  return g_define_type_id__volatile;
 
1685
}
 
1686
 
1664
1687
/* enumerations from "gsettings.h" */
1665
1688
GType
1666
1689
g_settings_bind_flags_get_type (void)