summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Wilmet <swilmet@gnome.org>2016-04-09 15:21:27 +0200
committerMatthias Clasen <mclasen@redhat.com>2016-04-19 10:24:32 -0400
commitb51455712f870c69c40d934742647f49cc8560a9 (patch)
tree01ac57ae3a78e0a824deab554be88a586ea37735
parent9bc3a93cf974619e479bf6bfc9442fd8b693f7bb (diff)
downloadgtk+-b51455712f870c69c40d934742647f49cc8560a9.tar.gz
app: fix indentation
And add missing curly braces.
-rw-r--r--gtk/gtkapplication.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/gtk/gtkapplication.c b/gtk/gtkapplication.c
index 454c610784..fde1b2340b 100644
--- a/gtk/gtkapplication.c
+++ b/gtk/gtkapplication.c
@@ -607,14 +607,16 @@ gtk_application_load_resources (GtkApplication *application)
path = g_strconcat (base_path, "/gtk/help-overlay.ui", NULL);
if (g_resources_get_info (path, G_RESOURCE_LOOKUP_FLAGS_NONE, NULL, NULL, NULL))
- {
- const gchar * const accels[] = { "<Primary>F1", "<Primary>question", NULL };
+ {
+ const gchar * const accels[] = { "<Primary>F1", "<Primary>question", NULL };
- application->priv->help_overlay_path = path;
- gtk_application_set_accels_for_action (application, "win.show-help-overlay", accels);
- }
- else
- g_free (path);
+ application->priv->help_overlay_path = path;
+ gtk_application_set_accels_for_action (application, "win.show-help-overlay", accels);
+ }
+ else
+ {
+ g_free (path);
+ }
}
}