From 0829e79fcf562a34cf6b8dbf24da9dfd454b8932 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 10:00:51 +0000 Subject: Utilisateur : Fcolin Date : 9/06/06 Heure : 10:16 Archivé dans $/CSharp/Ivy/Ivy Commentaire: correction typo (vss 3) --- CSharp/Ivy/IvyPPC/IvyEventArgs.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'CSharp/Ivy/IvyPPC/IvyEventArgs.cs') 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); -- cgit v1.1