Monotone-Parent: 05db10b383b8539c538b66c73af8db19b07dc441

Monotone-Revision: a2eae89ac32b5eb74e9d2879fd2b60d50e3e7071

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-07-16T17:22:42
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-07-16 17:22:42 +00:00
parent 9c9ae46e8c
commit a4e3042fe0
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
2010-07-16 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoContentObject.m (-davContentLength): fixed a
crash occurring with certain versions of GNUstep by using
NSISOLatin1StringEncoding instead of UTF8. This is actually the
correct way of doing things anyway since we want to return the
length in bytes and not in characters.
2010-07-16 Ludovic Marcotte <lmarcotte@inverse.ca>
* UI/Contacts/UIxContactView.m

View File

@@ -372,7 +372,7 @@
- (NSString *) davContentLength
{
return [NSString stringWithFormat: @"%u",
[content lengthOfBytesUsingEncoding: NSUTF8StringEncoding]];
[content lengthOfBytesUsingEncoding: NSISOLatin1StringEncoding]];
}
// - (NSString *) davResourceType