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:
Niels De Graef 2019-01-20 07:12:02 +00:00
commit 5f24b4521b
6 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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