From 5cd3a177791db2d3251bc03a7228c562e246ad65 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 7 Aug 2012 13:43:06 +0200 Subject: [PATCH] linux: Fix compile error --- SparkleShare/Linux/SparkleEventLog.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleShare/Linux/SparkleEventLog.cs b/SparkleShare/Linux/SparkleEventLog.cs index 1ed34146..06513288 100755 --- a/SparkleShare/Linux/SparkleEventLog.cs +++ b/SparkleShare/Linux/SparkleEventLog.cs @@ -276,7 +276,7 @@ namespace SparkleShare { "file://" + IO.Path.Combine (icons_path, "document-moved.png")); - Application.Invoke (delegate { + Application.Invoke (() => { this.spinner.Stop (); this.web_view.NavigationRequested -= WebViewNavigationRequested; this.web_view.LoadHtmlString (html, "file://"); @@ -285,7 +285,7 @@ namespace SparkleShare { this.content_wrapper.Add (this.scrolled_window); this.content_wrapper.ShowAll (); }); - })); + }); thread.Start (); }