summaryrefslogtreecommitdiff
path: root/src/libical-glib/i-cal-object.c.in
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2021-02-06 08:53:35 -0500
committerAllen Winter <allen.winter@kdab.com>2021-02-06 08:53:35 -0500
commitced840fb01e45488885b3c8cb6a502f24e6bf990 (patch)
tree4a88951fef74e281696fb63f46c841bef7b05281 /src/libical-glib/i-cal-object.c.in
parent9c2e79a867b2d5288b494699d1d4256301f98ad2 (diff)
downloadlibical-git-ced840fb01e45488885b3c8cb6a502f24e6bf990.tar.gz
minor coding style fixes
Diffstat (limited to 'src/libical-glib/i-cal-object.c.in')
-rw-r--r--src/libical-glib/i-cal-object.c.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libical-glib/i-cal-object.c.in b/src/libical-glib/i-cal-object.c.in
index 558707a4..11ec68cf 100644
--- a/src/libical-glib/i-cal-object.c.in
+++ b/src/libical-glib/i-cal-object.c.in
@@ -192,10 +192,10 @@ static void i_cal_object_finalize(GObject *object)
if (!priv->owner && !priv->is_global_memory &&
priv->native && priv->native_destroy_func) {
- g_clear_pointer (&priv->native, priv->native_destroy_func);
+ g_clear_pointer(&priv->native, priv->native_destroy_func);
}
- g_clear_object (&priv->owner);
+ g_clear_object(&priv->owner);
g_slist_free_full(priv->dependers, g_object_unref);
@@ -426,7 +426,7 @@ gpointer i_cal_object_steal_native(ICalObject *iobject)
LOCK_PROPS(priv);
- native = g_steal_pointer (&priv->native);
+ native = g_steal_pointer(&priv->native);
UNLOCK_PROPS(priv);
@@ -541,7 +541,7 @@ void i_cal_object_set_owner(ICalObject *iobject, GObject *owner)
return;
}
- g_set_object (&priv->owner, owner);
+ g_set_object(&priv->owner, owner);
UNLOCK_PROPS(priv);
@@ -595,7 +595,7 @@ void i_cal_object_remove_owner(ICalObject *iobject)
LOCK_PROPS(priv);
- g_clear_object (&priv->owner);
+ g_clear_object(&priv->owner);
UNLOCK_PROPS(priv);
}