diff options
author | fcolin | 2007-02-01 09:54:26 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:54:26 +0000 |
commit | 5f6e0c93d01c85ac5d26af3fd5062a386872b51c (patch) | |
tree | b26481416a498a8eff9eed9f594a14519ed3cc7d | |
parent | 94638130826256f324a470411b6baf7ae8cd6f4c (diff) | |
download | ivy-csharp-5f6e0c93d01c85ac5d26af3fd5062a386872b51c.zip ivy-csharp-5f6e0c93d01c85ac5d26af3fd5062a386872b51c.tar.gz ivy-csharp-5f6e0c93d01c85ac5d26af3fd5062a386872b51c.tar.bz2 ivy-csharp-5f6e0c93d01c85ac5d26af3fd5062a386872b51c.tar.xz |
Utilisateur : Fcolin Date : 8/12/03 Heure : 15:02 Archivé dans $/EScribe/Ivy Commentaire: (vss 15)
-rw-r--r-- | CSharp/Ivy/IvyPPC/Ivy.cs | 6 |
1 files changed, 3 insertions, 3 deletions
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)
|