From 89a36a6383bb9763f16453f4b59aec853a9f1b7e Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 21 Feb 2017 18:28:32 +0000 Subject: [PATCH] linux ui: Fix build --- SparkleShare/Linux/UserInterface.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleShare/Linux/UserInterface.cs b/SparkleShare/Linux/UserInterface.cs index 0dbb8500..f147ed30 100644 --- a/SparkleShare/Linux/UserInterface.cs +++ b/SparkleShare/Linux/UserInterface.cs @@ -41,7 +41,7 @@ namespace SparkleShare { public UserInterface () { - application = new Application ("org.sparkleshare.SparkleShare", 0); + application = new Application ("org.sparkleshare.SparkleShare", GLib.ApplicationFlags.None); application.Register (null); application.Activated += ApplicationActivatedDelegate; @@ -60,7 +60,7 @@ namespace SparkleShare { } - public void Run () + public void Run (string [] args) { (application as GLib.Application).Run (0, null); }