summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2016-04-07 11:42:44 +0100
committerRichard Hughes <richard@hughsie.com>2016-04-07 11:42:44 +0100
commit23f5c271ae2188ae25517ff15632ee44a74efc6c (patch)
tree47a3b7d62229f51e740db6d07e95c4e16b3033cf
parentdac9b7bc0a89391f22715f575dbdebfa14e691df (diff)
downloadappstream-glib-23f5c271ae2188ae25517ff15632ee44a74efc6c.tar.gz
Add AS_APP_QUIRK_NEEDS_REBOOT
-rw-r--r--libappstream-glib/as-app.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libappstream-glib/as-app.h b/libappstream-glib/as-app.h
index 422d14a..d3c000b 100644
--- a/libappstream-glib/as-app.h
+++ b/libappstream-glib/as-app.h
@@ -217,6 +217,7 @@ typedef enum {
* @AS_APP_QUIRK_COMPULSORY: Cannot be removed
* @AS_APP_QUIRK_HAS_SOURCE: Has a source to allow staying up-to-date
* @AS_APP_QUIRK_MATCH_ANY_PREFIX: Matches applications with any prefix
+ * @AS_APP_QUIRK_NEEDS_REBOOT: A reboot is required after the action
*
* The component attributes.
**/
@@ -226,6 +227,7 @@ typedef enum {
AS_APP_QUIRK_COMPULSORY = 1 << 1, /* Since: 0.5.10 */
AS_APP_QUIRK_HAS_SOURCE = 1 << 2, /* Since: 0.5.10 */
AS_APP_QUIRK_MATCH_ANY_PREFIX = 1 << 3, /* Since: 0.5.12 */
+ AS_APP_QUIRK_NEEDS_REBOOT = 1 << 4, /* Since: 0.5.14 */
/*< private >*/
AS_APP_QUIRK_LAST
} AsAppQuirk;