summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2017-10-23 13:30:51 +0100
committerRichard Hughes <richard@hughsie.com>2017-10-23 13:30:51 +0100
commitf7d001735ba9f0ac1f79e470149e894c819a4a5f (patch)
treeb54c360bb08aa9d2b080da0e58b7692d99dec157
parent7b9ebed2f4078e55ac12b38d2a9232b90292bff2 (diff)
downloadappstream-glib-f7d001735ba9f0ac1f79e470149e894c819a4a5f.tar.gz
trivial: Fix up the documentation for the SERVICE launchable types
-rw-r--r--libappstream-glib/as-launchable.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libappstream-glib/as-launchable.h b/libappstream-glib/as-launchable.h
index 1dd7fd3..16ec4d2 100644
--- a/libappstream-glib/as-launchable.h
+++ b/libappstream-glib/as-launchable.h
@@ -51,14 +51,16 @@ struct _AsLaunchableClass
* AsLaunchableKind:
* @AS_LAUNCHABLE_KIND_UNKNOWN: Type invalid or not known
* @AS_LAUNCHABLE_KIND_DESKTOP_ID: A desktop ID
+ * @AS_LAUNCHABLE_KIND_SERVICE: A system service
+ * @AS_LAUNCHABLE_KIND_COCKPIT_MANIFEST: A manifest run by the cockpit project
*
* The launchable type.
**/
typedef enum {
AS_LAUNCHABLE_KIND_UNKNOWN,
AS_LAUNCHABLE_KIND_DESKTOP_ID, /* Since: 0.6.13 */
- AS_LAUNCHABLE_KIND_SERVICE, /* Since: 0.11.2 */
- AS_LAUNCHABLE_KIND_COCKPIT_MANIFEST, /* Since: 0.11.4 */
+ AS_LAUNCHABLE_KIND_SERVICE, /* Since: 0.7.3 */
+ AS_LAUNCHABLE_KIND_COCKPIT_MANIFEST, /* Since: 0.7.3 */
/*< private >*/
AS_LAUNCHABLE_KIND_LAST
} AsLaunchableKind;