summaryrefslogtreecommitdiff
path: root/CSharp
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:06:26 +0000
committerfcolin2007-02-01 10:06:26 +0000
commit7d173bdf6ac0d03b29a3f900c517860ffd332cce (patch)
treeb3a793620ac781a729fe0ab7cb5f4fde4068788c /CSharp
parentc81e482ee53617af0706e3e89c3933f9a1502daa (diff)
downloadivy-csharp-7d173bdf6ac0d03b29a3f900c517860ffd332cce.zip
ivy-csharp-7d173bdf6ac0d03b29a3f900c517860ffd332cce.tar.gz
ivy-csharp-7d173bdf6ac0d03b29a3f900c517860ffd332cce.tar.bz2
ivy-csharp-7d173bdf6ac0d03b29a3f900c517860ffd332cce.tar.xz
Utilisateur : Fcolin Date : 10/02/06 Heure : 10:24 Archivé dans $/CSharp/Ivy/IvyProbe Commentaire: (vss 18)
Diffstat (limited to 'CSharp')
-rw-r--r--CSharp/Ivy/IvyProbe/IvyProbe.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/CSharp/Ivy/IvyProbe/IvyProbe.cs b/CSharp/Ivy/IvyProbe/IvyProbe.cs
index 03000db..ea19de4 100644
--- a/CSharp/Ivy/IvyProbe/IvyProbe.cs
+++ b/CSharp/Ivy/IvyProbe/IvyProbe.cs
@@ -50,7 +50,7 @@ namespace IvyProbe
// ajoute la nouvelle regex
string regexp = tbRegexp.Text;
regexp.Trim();
- int regexp_id = bus.bindMsg(regexp, new Ivy.MessageHandler(receive));
+ int regexp_id = bus.bindMsg(regexp, receive);
tbRegexp.Text = "";
append( "bind("+regexp_id+") ->"+regexp);
}
@@ -59,7 +59,7 @@ namespace IvyProbe
// ajoute la nouvelle regex
string expression = tbRegexp.Text;
expression.Trim();
- int regexp_id = bus.bindSimpleMsg(expression, new Ivy.MessageHandler(receive));
+ int regexp_id = bus.bindSimpleMsg(expression, receive);
tbRegexp.Text = "";
append( "bind("+regexp_id+") ->"+expression);
}