summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:57:19 +0000
committerfcolin2007-02-01 09:57:19 +0000
commitefd7af76297ceb2a75519b784b835dc8741d0054 (patch)
tree279ec0cf624779f28c0befbfda25404e23619a5e /CSharp/Ivy/IvyPPC
parent4c83f7e09c4e2b5b4da81a47bf29d1f67e3f2f89 (diff)
downloadivy-csharp-efd7af76297ceb2a75519b784b835dc8741d0054.zip
ivy-csharp-efd7af76297ceb2a75519b784b835dc8741d0054.tar.gz
ivy-csharp-efd7af76297ceb2a75519b784b835dc8741d0054.tar.bz2
ivy-csharp-efd7af76297ceb2a75519b784b835dc8741d0054.tar.xz
Utilisateur : Fcolin Date : 23/06/06 Heure : 15:30 Archivé dans $/CSharp/Ivy/Ivy Commentaire: bug sur le rendu de l'expression (vss 7)
Diffstat (limited to 'CSharp/Ivy/IvyPPC')
-rw-r--r--CSharp/Ivy/IvyPPC/IvyBindingAttribute.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyBindingAttribute.cs b/CSharp/Ivy/IvyPPC/IvyBindingAttribute.cs
index 93b9641..beaf475 100644
--- a/CSharp/Ivy/IvyPPC/IvyBindingAttribute.cs
+++ b/CSharp/Ivy/IvyPPC/IvyBindingAttribute.cs
@@ -13,7 +13,7 @@ namespace IvyBus
// translate part of expression to object property
public string GetExpression(object obj)
{
- if (obj == null) return "";
+ if (obj == null) return string.Format(expression);
string[] values = new string[args.Length];
for (int i = 0; i < args.Length; i++)
{