summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoaquim Rocha <jrocha@endlessm.com>2016-04-20 15:09:15 +0200
committerJoaquim Rocha <jrocha@endlessm.com>2016-04-20 15:44:09 +0200
commit886bbd596d1e94e0321d15cae5c7a0e6c074fbb2 (patch)
tree6146940124fbac5ec78e600c9b9f10ac9885fd1a
parentb3cf38078ad2a2578a9e1793a96961bc4d7f380d (diff)
downloadappstream-glib-886bbd596d1e94e0321d15cae5c7a0e6c074fbb2.tar.gz
Add AS_APP_QUIRK_HAS_SHORTCUT
This indicates that an app has a shortcut in the system.
-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 772a9a0..0211ce3 100644
--- a/libappstream-glib/as-app.h
+++ b/libappstream-glib/as-app.h
@@ -219,6 +219,7 @@ typedef enum {
* @AS_APP_QUIRK_MATCH_ANY_PREFIX: Matches applications with any prefix
* @AS_APP_QUIRK_NEEDS_REBOOT: A reboot is required after the action
* @AS_APP_QUIRK_NOT_REVIEWABLE: The app is not reviewable
+ * @AS_APP_QUIRK_HAS_SHORTCUT: The app has a shortcut in the system
*
* The component attributes.
**/
@@ -230,6 +231,7 @@ typedef enum {
AS_APP_QUIRK_MATCH_ANY_PREFIX = 1 << 3, /* Since: 0.5.12 */
AS_APP_QUIRK_NEEDS_REBOOT = 1 << 4, /* Since: 0.5.14 */
AS_APP_QUIRK_NOT_REVIEWABLE = 1 << 5, /* Since: 0.5.14 */
+ AS_APP_QUIRK_HAS_SHORTCUT = 1 << 6, /* Since: 0.5.15 */
/*< private >*/
AS_APP_QUIRK_LAST
} AsAppQuirk;