summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:42:27 +0000
committerfcolin2007-02-01 09:42:27 +0000
commitd59c4c8e6b821c497705fff1394c5b9dee422fcf (patch)
tree4ee42b8533122b240a9a1f035fec86ea8c3635fd
parentb6757b3a5dbd70eed5592acb2281233304585fe4 (diff)
downloadivy-csharp-d59c4c8e6b821c497705fff1394c5b9dee422fcf.zip
ivy-csharp-d59c4c8e6b821c497705fff1394c5b9dee422fcf.tar.gz
ivy-csharp-d59c4c8e6b821c497705fff1394c5b9dee422fcf.tar.bz2
ivy-csharp-d59c4c8e6b821c497705fff1394c5b9dee422fcf.tar.xz
Utilisateur : Fcolin Date : 8/12/03 Heure : 15:02 Archivé dans $/EScribe/Ivy Commentaire: (vss 15)
-rw-r--r--CSharp/Ivy/Ivy/Ivy.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/CSharp/Ivy/Ivy/Ivy.cs b/CSharp/Ivy/Ivy/Ivy.cs
index 4026b1b..b4f3b65 100644
--- a/CSharp/Ivy/Ivy/Ivy.cs
+++ b/CSharp/Ivy/Ivy/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)