summaryrefslogtreecommitdiff
path: root/src/deamon.vala
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-09-27 15:05:13 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-09-27 15:05:13 +0200
commit16fe2e5d0525422ba6ca5db9e92a93d17caae302 (patch)
treed6f1a9ed22335f6d0b457ccdd560b7525fb38d14 /src/deamon.vala
parent10af7615316fd91eef61cc66a8ede38a2bff3fdc (diff)
Imported Upstream version 0.6.6upstream/0.6.6
Diffstat (limited to 'src/deamon.vala')
-rw-r--r--src/deamon.vala8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/deamon.vala b/src/deamon.vala
index 8c84f3a..f4e1aeb 100644
--- a/src/deamon.vala
+++ b/src/deamon.vala
@@ -43,7 +43,7 @@ public class Deamon : GLib.Application {
/////////////////////////////////////////////////////////////////////
public static int main(string[] args) {
- version = "0.6.5";
+ version = "0.6.6";
// disable overlay scrollbar --- hacky workaround for black /
// transparent background
@@ -192,10 +192,12 @@ public class Deamon : GLib.Application {
}
if (reset) {
- if (GLib.FileUtils.remove(Paths.pie_config) == 0)
+ if (GLib.FileUtils.remove(Paths.pie_config) == 0) {
message("Removed file \"%s\"", Paths.pie_config);
- if (GLib.FileUtils.remove(Paths.settings) == 0)
+ }
+ if (GLib.FileUtils.remove(Paths.settings) == 0) {
message("Removed file \"%s\"", Paths.settings);
+ }
return true;
}