badger: fix style

This commit is contained in:
Hylke Bons 2011-06-28 01:18:47 +01:00
parent 5aabb48b10
commit 9e018a0a1b

View file

@ -28,7 +28,7 @@ namespace SparkleShare {
private Dictionary<string, NSImage> icons = new Dictionary<string, NSImage> ();
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);