From: Benjamin Otte Date: Sat, 26 Feb 2022 03:36:24 +0000 (+0100) Subject: flattenlistmodel: Fix indentation X-Git-Tag: archive/raspbian/4.6.5+ds-1+rpi1~1^2~19^2~3^2~28 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=47ea51efab6c5e31ee473bd7f2e27f03b9fe9c5f;p=gtk4.git flattenlistmodel: Fix indentation --- diff --git a/gtk/gtkflattenlistmodel.c b/gtk/gtkflattenlistmodel.c index 15a164f5c9..74f3b7795a 100644 --- a/gtk/gtkflattenlistmodel.c +++ b/gtk/gtkflattenlistmodel.c @@ -72,8 +72,8 @@ static GParamSpec *properties[NUM_PROPERTIES] = { NULL, }; static FlattenNode * gtk_flatten_list_model_get_nth (GtkRbTree *tree, - guint position, - guint *model_position) + guint position, + guint *model_position) { FlattenNode *node, *tmp; guint model_n_items; @@ -110,8 +110,8 @@ gtk_flatten_list_model_get_nth (GtkRbTree *tree, static FlattenNode * gtk_flatten_list_model_get_nth_model (GtkRbTree *tree, - guint position, - guint *items_before) + guint position, + guint *items_before) { FlattenNode *node, *tmp; guint before; @@ -202,11 +202,11 @@ G_DEFINE_TYPE_WITH_CODE (GtkFlattenListModel, gtk_flatten_list_model, G_TYPE_OBJ G_IMPLEMENT_INTERFACE (G_TYPE_LIST_MODEL, gtk_flatten_list_model_model_init)) static void -gtk_flatten_list_model_items_changed_cb (GListModel *model, - guint position, - guint removed, - guint added, - gpointer _node) +gtk_flatten_list_model_items_changed_cb (GListModel *model, + guint position, + guint removed, + guint added, + gpointer _node) { FlattenNode *node = _node, *parent, *left; GtkFlattenListModel *self = node->list; @@ -323,10 +323,10 @@ gtk_flatten_list_model_set_property (GObject *object, } static void -gtk_flatten_list_model_get_property (GObject *object, - guint prop_id, - GValue *value, - GParamSpec *pspec) +gtk_flatten_list_model_get_property (GObject *object, + guint prop_id, + GValue *value, + GParamSpec *pspec) { GtkFlattenListModel *self = GTK_FLATTEN_LIST_MODEL (object);