From 8084d077743fd260bf75ac050a1b473b901ba4a7 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sat, 29 Sep 2012 12:35:36 +0200 Subject: [PATCH] fix compile error --- SparkleLib/SparkleRepoBase.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SparkleLib/SparkleRepoBase.cs b/SparkleLib/SparkleRepoBase.cs index f346e0c4..f0b26be6 100755 --- a/SparkleLib/SparkleRepoBase.cs +++ b/SparkleLib/SparkleRepoBase.cs @@ -175,7 +175,7 @@ namespace SparkleLib { this.last_poll = DateTime.Now; if (HasRemoteChanges) { - this.poll_interval = PollInterval.Long + this.poll_interval = PollInterval.Long; SyncDownBase (); } } @@ -316,7 +316,7 @@ namespace SparkleLib { ChangeSets = GetChangeSets (); HasUnsyncedChanges = false; - PollInterval = PollInterval.Long; + this.poll_interval = PollInterval.Long; SyncStatusChanged (SyncStatus.Idle); this.listener.Announce (new SparkleAnnouncement (Identifier, CurrentRevision)); @@ -335,7 +335,7 @@ namespace SparkleLib { this.listener.Announce (new SparkleAnnouncement (Identifier, CurrentRevision)); } else { - PollInterval = PollInterval.Short; + this.poll_interval = PollInterval.Short; SyncStatusChanged (SyncStatus.Error); } }