Merge branch 'collection-enums-prefix' into 'master'

Use proper prefix for SecretCollection flags

See merge request GNOME/libsecret!19
This commit is contained in:
Daiki Ueno 2019-05-11 07:10:04 +00:00
commit 6736f9f3e5

View File

@ -27,12 +27,12 @@
G_BEGIN_DECLS
typedef enum {
typedef enum { /*< prefix=SECRET_COLLECTION >*/
SECRET_COLLECTION_NONE = 0 << 0,
SECRET_COLLECTION_LOAD_ITEMS = 1 << 1,
} SecretCollectionFlags;
typedef enum {
typedef enum { /*< prefix=SECRET_COLLECTION_CREATE >*/
SECRET_COLLECTION_CREATE_NONE = 0 << 0,
} SecretCollectionCreateFlags;