From d31aec592c67f77ff4d809d6a2e49398e87ecdd9 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 28 Jun 2011 01:18:47 +0100 Subject: [PATCH] badger: fix style --- SparkleShare/Mac/SparkleBadger.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SparkleShare/Mac/SparkleBadger.cs b/SparkleShare/Mac/SparkleBadger.cs index ffa5b140..4ee0845b 100644 --- a/SparkleShare/Mac/SparkleBadger.cs +++ b/SparkleShare/Mac/SparkleBadger.cs @@ -28,7 +28,7 @@ namespace SparkleShare { private Dictionary icons = new Dictionary (); private int [] sizes = new int [] {16, 32, 48, 128, 256, 512}; - private string [] Paths; + private string [] paths; public SparkleBadger (string [] paths) @@ -40,7 +40,7 @@ namespace SparkleShare { public void Badge () { using (NSAutoreleasePool a = new NSAutoreleasePool ()) { - foreach (string path in Paths) { + foreach (string path in this.paths) { string extension = Path.GetExtension (path.ToLower ()); NSImage new_icon = new NSImage (); @@ -78,7 +78,7 @@ namespace SparkleShare { public void Clear () { - foreach (string path in Paths) { + foreach (string path in this.paths) { string extension = Path.GetExtension (path.ToLower ()); NSImage original_icon = NSWorkspace.SharedWorkspace.IconForFileType (extension);