windows: fix build

This commit is contained in:
Hylke Bons 2012-09-17 09:49:19 +01:00
parent b85d9185ad
commit 93dfffe17a

View file

@ -51,11 +51,11 @@ namespace SparkleShare {
public SparkleStatusIcon () public SparkleStatusIcon ()
{ {
this.syncing_idle_image = SparkleUIHelpers.GetBitmap ("process-syncing-idle"), this.syncing_idle_image = SparkleUIHelpers.GetBitmap ("process-syncing-idle");
this.syncing_up_image = SparkleUIHelpers.GetBitmap ("process-syncing-up"), this.syncing_up_image = SparkleUIHelpers.GetBitmap ("process-syncing-up");
this.syncing_down_image = SparkleUIHelpers.GetBitmap ("process-syncing-down"), this.syncing_down_image = SparkleUIHelpers.GetBitmap ("process-syncing-down");
this.syncing_image = SparkleUIHelpers.GetBitmap ("process-syncing"), this.syncing_image = SparkleUIHelpers.GetBitmap ("process-syncing");
this.syncing_error_image = SparkleUIHelpers.GetBitmap ("process-syncing-error") this.syncing_error_image = SparkleUIHelpers.GetBitmap ("process-syncing-error");
this.notify_icon.Icon = this.syncing_idle_image; this.notify_icon.Icon = this.syncing_idle_image;
this.notify_icon.HeaderText = "SparkleShare"; this.notify_icon.HeaderText = "SparkleShare";
@ -78,7 +78,7 @@ namespace SparkleShare {
break; break;
} }
case IconState.Syncing: { case IconState.Syncing: {
this.notify_icon.Icon = this.syncing_image_image; this.notify_icon.Icon = this.syncing_image;
break; break;
} }
case IconState.Error: { case IconState.Error: {