From 7f2b555e95a6c3ed00deb9c48209ac1e3e5cbd39 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 8 May 2011 20:43:12 +0100 Subject: [PATCH] events: fix more whitespace --- SparkleLib/SparkleEvents.cs | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/SparkleLib/SparkleEvents.cs b/SparkleLib/SparkleEvents.cs index b3b74ba8..3f50180a 100644 --- a/SparkleLib/SparkleEvents.cs +++ b/SparkleLib/SparkleEvents.cs @@ -19,36 +19,36 @@ using System; namespace SparkleLib { - // Arguments for most events - public class SparkleEventArgs : EventArgs { + // Arguments for most events + public class SparkleEventArgs : EventArgs { - public string Type; - public string Message; + public string Type; + public string Message; - public SparkleEventArgs (string type) - { - Type = type; - } - } + public SparkleEventArgs (string type) + { + Type = type; + } + } - // Arguments for the NewCommit event - public class NewCommitArgs : EventArgs { + // Arguments for the NewCommit event + public class NewCommitArgs : EventArgs { - public string UserName; - public string UserEmail; - public string Message; - public string LocalPath; + public string UserName; + public string UserEmail; + public string Message; + public string LocalPath; public NewCommitArgs (string user_name, string user_email, string message, string local_path) - { + { UserName = user_name; UserEmail = user_email; Message = message; LocalPath = local_path; - } - } + } + } }