diff options
author | Richard Hughes <richard@hughsie.com> | 2015-08-10 12:28:38 +0100 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2015-08-10 12:28:38 +0100 |
commit | 97cfb9b6af3c141df07c00bf2a071b441469e2ef (patch) | |
tree | 50989258bda8e26232284b66a82e9adcc083121f /libappstream-glib/as-provide.h | |
parent | 3e2d63ef770b99001a460fb1a143b1407a391108 (diff) | |
download | appstream-glib-97cfb9b6af3c141df07c00bf2a071b441469e2ef.tar.gz |
Fix the name of the D-Bus session enum
If we're breaking API, we might as well fix up some of the legacy stuff.
Diffstat (limited to 'libappstream-glib/as-provide.h')
-rw-r--r-- | libappstream-glib/as-provide.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libappstream-glib/as-provide.h b/libappstream-glib/as-provide.h index bbec6e4..040ab73 100644 --- a/libappstream-glib/as-provide.h +++ b/libappstream-glib/as-provide.h @@ -69,7 +69,7 @@ struct _AsProvideClass * @AS_PROVIDE_KIND_FIRMWARE: A firmware file * @AS_PROVIDE_KIND_PYTHON2: A Python 2 module * @AS_PROVIDE_KIND_PYTHON3: A Python 3 module - * @AS_PROVIDE_KIND_DBUS: A D-Bus service + * @AS_PROVIDE_KIND_DBUS_SESSION: A D-Bus session service * @AS_PROVIDE_KIND_DBUS_SYSTEM: A D-Bus system service * * The provide type. @@ -83,7 +83,7 @@ typedef enum { AS_PROVIDE_KIND_FIRMWARE, AS_PROVIDE_KIND_PYTHON2, AS_PROVIDE_KIND_PYTHON3, - AS_PROVIDE_KIND_DBUS, /* Since: 0.1.7 */ + AS_PROVIDE_KIND_DBUS_SESSION, /* Since: 0.1.7 */ AS_PROVIDE_KIND_DBUS_SYSTEM, /* Since: 0.2.4 */ /*< private >*/ AS_PROVIDE_KIND_LAST |