From 12f5e041252f03152af55f611b3d05dfd237f740 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 14 May 2015 17:26:10 +0800 Subject: [PATCH] src/Application.vala --- src/Application.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Application.vala b/src/Application.vala index 545bbf0ae..790dfe1f5 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -82,7 +82,7 @@ public AppSettings settings = null; - public BuilderApplication (string[] args) + public BuilderApplication ( string[] args) { Object( application_id: "org.roojs.app-builder", @@ -103,7 +103,7 @@ stdout.printf ("error: %s\n", e.message); stdout.printf ("Run '%s --help' to see a full list of available command line options.\n %s", args[0], opt_context.get_help(true,null)); - GLib.Process.exit(1); + GLib.Process.exit(Posix.EXIT_FAILURE); return; } @@ -111,10 +111,10 @@ - public static BuilderApplication singleton(string[] args) + public static BuilderApplication singleton( string[] args) { if (application==null) { - application = new BuilderApplication(args); + application = new BuilderApplication( args); } -- 2.39.2