diff options
Diffstat (limited to 'CSharp/Ivy/IvyPPC')
-rw-r--r-- | CSharp/Ivy/IvyPPC/IvyEventArgs.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyEventArgs.cs b/CSharp/Ivy/IvyPPC/IvyEventArgs.cs index fe0196d..1a0ee9d 100644 --- a/CSharp/Ivy/IvyPPC/IvyEventArgs.cs +++ b/CSharp/Ivy/IvyPPC/IvyEventArgs.cs @@ -52,13 +52,13 @@ namespace IvyBus }
public class IvyMessageEventArgs : EventArgs
{
- private IvyClient cleint;
+ private IvyClient client;
private int id;
private StringCollection args;
public IvyClient Client
{
- get { return cleint; }
+ get { return client; }
}
public int Id
@@ -76,7 +76,7 @@ namespace IvyBus }
public IvyMessageEventArgs(IvyClient app, int id, string[] args)
{
- this.cleint = app;
+ this.client = app;
this.id = id;
this.args = new StringCollection();
this.args.AddRange(args);
|