diff options
author | fcolin | 2007-02-01 09:49:25 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:49:25 +0000 |
commit | b4cf4cb468e3acc4bbecc212790cc23466142e81 (patch) | |
tree | dcd28a79f153adaccb929f7a7e7ff20f75d639f5 /CSharp/Ivy | |
parent | bbe2afe5b1757b2f1bcfc747a0941ec6eb4c60e2 (diff) | |
download | ivy-csharp-b4cf4cb468e3acc4bbecc212790cc23466142e81.zip ivy-csharp-b4cf4cb468e3acc4bbecc212790cc23466142e81.tar.gz ivy-csharp-b4cf4cb468e3acc4bbecc212790cc23466142e81.tar.bz2 ivy-csharp-b4cf4cb468e3acc4bbecc212790cc23466142e81.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')
-rw-r--r-- | CSharp/Ivy/Ivy/IvyEventArgs.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CSharp/Ivy/Ivy/IvyEventArgs.cs b/CSharp/Ivy/Ivy/IvyEventArgs.cs index fe0196d..1a0ee9d 100644 --- a/CSharp/Ivy/Ivy/IvyEventArgs.cs +++ b/CSharp/Ivy/Ivy/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);
|