mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2025-01-03 02:28:53 +00:00
Merge branch 'wip/nielsdg/fix-autoptr-defines' into 'master'
Don't end G_DEFINE_AUTOPTR_CLEANUP_FUNC with a ; See merge request GNOME/libsecret!13
This commit is contained in:
commit
5f24b4521b
@ -173,7 +173,7 @@ guint64 secret_collection_get_created (SecretCollection
|
||||
|
||||
guint64 secret_collection_get_modified (SecretCollection *self);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretCollection, g_object_unref);
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretCollection, g_object_unref)
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
@ -191,7 +191,7 @@ guint64 secret_item_get_created (SecretItem *self);
|
||||
|
||||
guint64 secret_item_get_modified (SecretItem *self);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretItem, g_object_unref);
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretItem, g_object_unref)
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
@ -75,7 +75,7 @@ GVariant * secret_prompt_perform_finish (SecretPrompt *self,
|
||||
GAsyncResult *result,
|
||||
GError **error);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretPrompt, g_object_unref);
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretPrompt, g_object_unref)
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
@ -72,7 +72,7 @@ void secret_schema_unref (SecretSchema *schema);
|
||||
|
||||
GType secret_schema_attribute_get_type (void) G_GNUC_CONST;
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretSchema, g_object_unref);
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretSchema, g_object_unref)
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
@ -304,7 +304,7 @@ gboolean secret_service_set_alias_sync (SecretService
|
||||
GCancellable *cancellable,
|
||||
GError **error);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretService, g_object_unref);
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretService, g_object_unref)
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
@ -51,7 +51,7 @@ SecretValue * secret_value_ref (SecretValue *value);
|
||||
|
||||
void secret_value_unref (gpointer value);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretValue, secret_value_unref);
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC (SecretValue, secret_value_unref)
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user