events: fix more whitespace

This commit is contained in:
Hylke Bons 2011-05-08 20:43:12 +01:00
parent 3795e1e1fa
commit 7f2b555e95

View file

@ -19,36 +19,36 @@ using System;
namespace SparkleLib { namespace SparkleLib {
// Arguments for most events // Arguments for most events
public class SparkleEventArgs : EventArgs { public class SparkleEventArgs : EventArgs {
public string Type; public string Type;
public string Message; public string Message;
public SparkleEventArgs (string type) public SparkleEventArgs (string type)
{ {
Type = type; Type = type;
} }
} }
// Arguments for the NewCommit event // Arguments for the NewCommit event
public class NewCommitArgs : EventArgs { public class NewCommitArgs : EventArgs {
public string UserName; public string UserName;
public string UserEmail; public string UserEmail;
public string Message; public string Message;
public string LocalPath; public string LocalPath;
public NewCommitArgs (string user_name, string user_email, public NewCommitArgs (string user_name, string user_email,
string message, string local_path) string message, string local_path)
{ {
UserName = user_name; UserName = user_name;
UserEmail = user_email; UserEmail = user_email;
Message = message; Message = message;
LocalPath = local_path; LocalPath = local_path;
} }
} }
} }