From c316800bcf71386ea25e361165e0841cb75a55c7 Mon Sep 17 00:00:00 2001 From: helge Date: Sat, 8 Jan 2005 14:56:30 +0000 Subject: [PATCH] fixed a minor issue on YDL git-svn-id: http://svn.opengroupware.org/SOPE/trunk@500 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- sope-appserver/NGObjWeb/Associations/WOKeyPathAssociation.m | 2 +- sope-appserver/NGObjWeb/ChangeLog | 5 +++++ sope-appserver/NGObjWeb/Version | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/sope-appserver/NGObjWeb/Associations/WOKeyPathAssociation.m b/sope-appserver/NGObjWeb/Associations/WOKeyPathAssociation.m index b42f024c..7131ec20 100644 --- a/sope-appserver/NGObjWeb/Associations/WOKeyPathAssociation.m +++ b/sope-appserver/NGObjWeb/Associations/WOKeyPathAssociation.m @@ -1289,7 +1289,7 @@ static BOOL _setValue(WOKeyPathAssociation *self, id _value, id root) { if (IS_UNUMSTR(retValue.c)) return numStrings[retValue.c]; return [StringClass stringWithFormat:@"%d", (int)retValue.c]; case _C_CHR: - if (IS_NUMSTR((char)retValue.c)) return numStrings[retValue.c]; + if (IS_NUMSTR((signed char)retValue.c)) return numStrings[retValue.c]; return [StringClass stringWithFormat:@"%d", (int)retValue.c]; case _C_SHT: if (IS_NUMSTR(retValue.ss)) return numStrings[retValue.ss]; diff --git a/sope-appserver/NGObjWeb/ChangeLog b/sope-appserver/NGObjWeb/ChangeLog index 0f890f7a..4229184a 100644 --- a/sope-appserver/NGObjWeb/ChangeLog +++ b/sope-appserver/NGObjWeb/ChangeLog @@ -1,3 +1,8 @@ +2005-01-08 Helge Hess + + * Associations/WOKeyPathAssociation.m: fixed a type coercion issue on + YellowDog Linux (v4.5.109) + 2005-01-07 Marcus Mueller * _WOStringTable.m: changed strings file encoding from ISO-Latin-1 diff --git a/sope-appserver/NGObjWeb/Version b/sope-appserver/NGObjWeb/Version index 3f3a7d2c..32af9f8d 100644 --- a/sope-appserver/NGObjWeb/Version +++ b/sope-appserver/NGObjWeb/Version @@ -1,6 +1,6 @@ # version file -SUBMINOR_VERSION:=108 +SUBMINOR_VERSION:=109 # v4.5.91 requires libNGExtensions v4.5.134 # v4.5.84 requires libNGExtensions v4.5.127 -- 2.39.5