summaryrefslogtreecommitdiff
path: root/dev-libs/appstream/files/appstream-0.12.11-qt-add-missing-provided-kindid-enum.patch
blob: e96b2a3856ddcefdf936fb7f1fb9325c6e4fcd49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From 36f71e78f033fdb5bb880825b878b7dab31c0a73 Mon Sep 17 00:00:00 2001
From: Aleix Pol <aleixpol@kde.org>
Date: Mon, 1 Jun 2020 13:25:25 +0200
Subject: [PATCH] qt: add missing Provided::KindId enum

It was never added to the Qt interface
---
 qt/provided.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/qt/provided.h b/qt/provided.h
index 1e3ba317..8e350fb0 100644
--- a/qt/provided.h
+++ b/qt/provided.h
@@ -59,7 +59,8 @@ class APPSTREAMQT_EXPORT Provided {
             KindDBusSystemService,
             KindDBusUserService,
             KindFirmwareRuntime,
-            KindFirmwareFlashed
+            KindFirmwareFlashed,
+            KindId,
         };
         Q_ENUM(Kind)