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