summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:56:44 +0000
committerfcolin2007-02-01 09:56:44 +0000
commitfff77628de3131aeff119e886fecd8f78c42ae3a (patch)
treeaab65245a8ace5fb80ebcd12927d7ca275e65416 /CSharp/Ivy/IvyPPC
parentaca86882d4ed5a9b972b88d45f4bff8fa4c149ba (diff)
downloadivy-csharp-fff77628de3131aeff119e886fecd8f78c42ae3a.zip
ivy-csharp-fff77628de3131aeff119e886fecd8f78c42ae3a.tar.gz
ivy-csharp-fff77628de3131aeff119e886fecd8f78c42ae3a.tar.bz2
ivy-csharp-fff77628de3131aeff119e886fecd8f78c42ae3a.tar.xz
Utilisateur : Fcolin Date : 22/12/06 Heure : 17:39 Archivé dans $/CSharp/Ivy/IvyPPC Commentaire: modif compile sur PocketPC (vss 7)
Diffstat (limited to 'CSharp/Ivy/IvyPPC')
-rw-r--r--CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs b/CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs
index 4fbc45c..9183850 100644
--- a/CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs
+++ b/CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs
@@ -114,6 +114,7 @@ namespace IvyBus
public void FormatExpression()
{
//// Safely :
+#if (!PocketPC)//TODO Pocket PC doesn't have Target Member
EventHandler<IvyMessageEventArgs> temp = Callback;
if (temp != null)
{
@@ -134,7 +135,8 @@ namespace IvyBus
formated_expression = string.Format(expression, args);
}
else //TODO Abnormal condition Design Time
- formated_expression = expression;
+#endif
+ formated_expression = expression;
}