summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2017-08-11 21:37:58 +0200
committerJoel Klinghed <the_jk@yahoo.com>2017-08-11 21:37:58 +0200
commit1ca75b74ce0478b9d8e2fe152026a12bd469cf9d (patch)
treed2a805676029ae64c53a69785be74136c5e6f1e5
parenta64fb2cc9b2eb98157555b357a133a7ea75ab650 (diff)
Fix indentation
-rw-r--r--src/gui_gtk.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui_gtk.cc b/src/gui_gtk.cc
index 39016c1..a5edae8 100644
--- a/src/gui_gtk.cc
+++ b/src/gui_gtk.cc
@@ -1271,15 +1271,15 @@ public:
GTK_FILE_CHOOSER_ACTION_SAVE,
nullptr, nullptr);
#else
- auto chooser = gtk_file_chooser_dialog_new(
+ auto chooser = gtk_file_chooser_dialog_new(
v->label_.c_str(),
GTK_WINDOW(dialog_),
GTK_FILE_CHOOSER_ACTION_SAVE,
- "_Cancel",
- GTK_RESPONSE_CANCEL,
- "_Save",
- GTK_RESPONSE_ACCEPT,
- NULL);
+ "_Cancel",
+ GTK_RESPONSE_CANCEL,
+ "_Save",
+ GTK_RESPONSE_ACCEPT,
+ NULL);
#endif
extra = gtk_button_new_with_label("...");