diff options
author | fcolin | 2007-02-01 09:56:40 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:56:40 +0000 |
commit | cef0c8f2800b3eeb199bb53b357b89e5bb8b1724 (patch) | |
tree | 3f2103a35093784a53816c65beb6a58b9bc3da58 /CSharp/Ivy/IvyPPC | |
parent | 70742620ab6a3d2be5628690e6eb56694cb8fbf4 (diff) | |
download | ivy-csharp-cef0c8f2800b3eeb199bb53b357b89e5bb8b1724.zip ivy-csharp-cef0c8f2800b3eeb199bb53b357b89e5bb8b1724.tar.gz ivy-csharp-cef0c8f2800b3eeb199bb53b357b89e5bb8b1724.tar.bz2 ivy-csharp-cef0c8f2800b3eeb199bb53b357b89e5bb8b1724.tar.xz |
Utilisateur : Fcolin Date : 30/06/06 Heure : 17:20 Archivé dans $/CSharp/Ivy/Ivy Commentaire: (vss 5)
Diffstat (limited to 'CSharp/Ivy/IvyPPC')
-rw-r--r-- | CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs b/CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs index ff8b2a4..5d5b3df 100644 --- a/CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs +++ b/CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs @@ -115,9 +115,9 @@ namespace IvyBus {
if (Callback != null)
{
- //TODO object target = Callback.Target;
- object target = Site.Component;
- if (args == null)
+ //TODO Pocket PC doesn't have Target Member
+ object target = Callback.Target;
+ if (args == null)
{
args = new object[arguments.Count];
for (int i = 0; i < arguments.Count; i++)
@@ -170,7 +170,7 @@ namespace IvyBus IvyMessageEventArgs args = (IvyMessageEventArgs)state;
temp(this, args);
};
- syncContext.Send(update, e);
+ syncContext.Post(update, e);
}
else
temp(this, e);
|