code style: consistent whitespaces for g_autoptr

This commit is contained in:
Evangelos Ribeiro Tzaras
2021-02-11 00:38:10 +01:00
parent 5375ebbc72
commit 5d4b84470c
7 changed files with 16 additions and 16 deletions

View File

@@ -43,7 +43,7 @@ static void
notify (CallsNotifier *self, CallsCall *call)
{
GApplication *app = g_application_get_default ();
g_autoptr(GNotification) notification;
g_autoptr (GNotification) notification;
g_autoptr (CallsBestMatch) contact = NULL;
g_autofree gchar *msg = NULL;
g_autofree gchar *ref = NULL;
@@ -95,7 +95,7 @@ state_changed_cb (CallsNotifier *self,
n = g_list_model_get_n_items (G_LIST_MODEL (self->unanswered));
for (int i = 0; i < n; i++)
{
g_autoptr(CallsCall) item = g_list_model_get_item (G_LIST_MODEL (self->unanswered), i);
g_autoptr (CallsCall) item = g_list_model_get_item (G_LIST_MODEL (self->unanswered), i);
if (item == call)
{
g_list_store_remove (self->unanswered, i);