fix compile error

This commit is contained in:
Hylke Bons 2012-09-29 12:35:36 +02:00
parent 2696fe6904
commit 8084d07774

View file

@ -175,7 +175,7 @@ namespace SparkleLib {
this.last_poll = DateTime.Now; this.last_poll = DateTime.Now;
if (HasRemoteChanges) { if (HasRemoteChanges) {
this.poll_interval = PollInterval.Long this.poll_interval = PollInterval.Long;
SyncDownBase (); SyncDownBase ();
} }
} }
@ -316,7 +316,7 @@ namespace SparkleLib {
ChangeSets = GetChangeSets (); ChangeSets = GetChangeSets ();
HasUnsyncedChanges = false; HasUnsyncedChanges = false;
PollInterval = PollInterval.Long; this.poll_interval = PollInterval.Long;
SyncStatusChanged (SyncStatus.Idle); SyncStatusChanged (SyncStatus.Idle);
this.listener.Announce (new SparkleAnnouncement (Identifier, CurrentRevision)); this.listener.Announce (new SparkleAnnouncement (Identifier, CurrentRevision));
@ -335,7 +335,7 @@ namespace SparkleLib {
this.listener.Announce (new SparkleAnnouncement (Identifier, CurrentRevision)); this.listener.Announce (new SparkleAnnouncement (Identifier, CurrentRevision));
} else { } else {
PollInterval = PollInterval.Short; this.poll_interval = PollInterval.Short;
SyncStatusChanged (SyncStatus.Error); SyncStatusChanged (SyncStatus.Error);
} }
} }