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 {
// 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;
}
}
}
}
}