summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC/IvyEventArgs.cs
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:00:51 +0000
committerfcolin2007-02-01 10:00:51 +0000
commit0829e79fcf562a34cf6b8dbf24da9dfd454b8932 (patch)
tree90d73c7efcd135e5302b6e7dafe7f4b131d51722 /CSharp/Ivy/IvyPPC/IvyEventArgs.cs
parentb3a61731cc966619220a21c026b3f31ff5accf08 (diff)
downloadivy-csharp-0829e79fcf562a34cf6b8dbf24da9dfd454b8932.zip
ivy-csharp-0829e79fcf562a34cf6b8dbf24da9dfd454b8932.tar.gz
ivy-csharp-0829e79fcf562a34cf6b8dbf24da9dfd454b8932.tar.bz2
ivy-csharp-0829e79fcf562a34cf6b8dbf24da9dfd454b8932.tar.xz
Utilisateur : Fcolin Date : 9/06/06 Heure : 10:16 Archivé dans $/CSharp/Ivy/Ivy Commentaire: correction typo (vss 3)
Diffstat (limited to 'CSharp/Ivy/IvyPPC/IvyEventArgs.cs')
-rw-r--r--CSharp/Ivy/IvyPPC/IvyEventArgs.cs6
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);