From 5f6e0c93d01c85ac5d26af3fd5062a386872b51c Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 09:54:26 +0000 Subject: Utilisateur : Fcolin Date : 8/12/03 Heure : 15:02 Archivé dans $/EScribe/Ivy Commentaire: (vss 15) --- CSharp/Ivy/IvyPPC/Ivy.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'CSharp/Ivy/IvyPPC') diff --git a/CSharp/Ivy/IvyPPC/Ivy.cs b/CSharp/Ivy/IvyPPC/Ivy.cs index 4026b1b..b4f3b65 100644 --- a/CSharp/Ivy/IvyPPC/Ivy.cs +++ b/CSharp/Ivy/IvyPPC/Ivy.cs @@ -25,7 +25,7 @@ namespace IvyBus public delegate void ClientDisconnectedHandler (IvyClient app); public delegate bool DieHandler (IvyClient app, int id ); - public delegate void MessageHandler (object data , IvyClient app, string[] args ); + public delegate void MessageHandler ( IvyClient app, string[] args ); /* Event */ @@ -527,8 +527,8 @@ namespace IvyBus throw new IvyException("(callCallback) Not regexp matching id " + key); } if ( syncControl != null ) - syncControl.Invoke( callback, new object[]{data, client,tab}); - else callback(data, client, tab); + syncControl.Invoke( callback, new object[]{client,tab}); + else callback(client, tab); } private static String[] myTokenize(String s, String separator) -- cgit v1.1