From 561e5ec71c644e030daee2baef2e7dc4b58bb1e4 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 28 Jun 2011 17:33:49 +0100 Subject: [PATCH] bagdger: fix compile errors --- SparkleShare/Mac/SparkleBadger.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SparkleShare/Mac/SparkleBadger.cs b/SparkleShare/Mac/SparkleBadger.cs index 4ee0845b..f59c3d8f 100644 --- a/SparkleShare/Mac/SparkleBadger.cs +++ b/SparkleShare/Mac/SparkleBadger.cs @@ -16,7 +16,9 @@ using System; +using System.Drawing; using System.IO; +using System.Collections.Generic; using MonoMac.AppKit; using MonoMac.Foundation; @@ -33,7 +35,7 @@ namespace SparkleShare { public SparkleBadger (string [] paths) { - Paths = paths; + this.paths = paths; }