From 406897e9dd985688cf03765987ecc66e3d85eef0 Mon Sep 17 00:00:00 2001 From: Xeross Date: Wed, 18 Apr 2012 11:59:37 +0200 Subject: [PATCH] Fixes "operator cannot be applied to operand of type `method group'" but not properly (I think) --- SparkleShare/Linux/SparkleSetup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleShare/Linux/SparkleSetup.cs b/SparkleShare/Linux/SparkleSetup.cs index d94d148e..51184ab8 100755 --- a/SparkleShare/Linux/SparkleSetup.cs +++ b/SparkleShare/Linux/SparkleSetup.cs @@ -516,7 +516,7 @@ namespace SparkleShare { Description = _("You can find it in your SparkleShare folder"); // A button that opens the synced folder - Button open_folder_button = new Button (string.Format ("Open {0}", Path.GetFileName (Controller.PreviousPath))); + Button open_folder_button = new Button (string.Format ("Open {0}", System.IO.Path.GetFileName (Controller.PreviousPath))); open_folder_button.Clicked += delegate { Controller.OpenFolderClicked ();