summaryrefslogtreecommitdiff
path: root/gtk/deprecated
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2016-08-25 21:05:25 +0200
committerBenjamin Otte <otte@redhat.com>2016-08-25 23:02:27 +0200
commitc8b301f1ea24ed4958af114c4cd30530de3ccc5b (patch)
tree42da0ed2ff1e2f7294d9862bf28a85033ca3dfa2 /gtk/deprecated
parentda8cef16dc577026bb8ae77ba43e3f4345b6a9a8 (diff)
downloadgtk+-c8b301f1ea24ed4958af114c4cd30530de3ccc5b.tar.gz
uimanager: Correctly indent code
Diffstat (limited to 'gtk/deprecated')
-rw-r--r--gtk/deprecated/gtkuimanager.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gtk/deprecated/gtkuimanager.c b/gtk/deprecated/gtkuimanager.c
index e990a6c6a6..9eea97b4cf 100644
--- a/gtk/deprecated/gtkuimanager.c
+++ b/gtk/deprecated/gtkuimanager.c
@@ -1267,16 +1267,16 @@ get_child_node (GtkUIManager *manager,
NODE_INFO (child)->name,
NODE_INFO (child)->type);
- if (node_is_dead (child))
- {
- /* This node was removed but is still dirty so
- * it is still in the tree. We want to treat this
- * as if it didn't exist, which means we move it
- * to the position it would have been created at.
- */
- g_node_unlink (child);
- goto insert_child;
- }
+ if (node_is_dead (child))
+ {
+ /* This node was removed but is still dirty so
+ * it is still in the tree. We want to treat this
+ * as if it didn't exist, which means we move it
+ * to the position it would have been created at.
+ */
+ g_node_unlink (child);
+ goto insert_child;
+ }
return child;
}