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); }