mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-24 10:56:22 +00:00
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:
@@ -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
|
||||
|
||||
@@ -372,7 +372,7 @@
|
||||
- (NSString *) davContentLength
|
||||
{
|
||||
return [NSString stringWithFormat: @"%u",
|
||||
[content lengthOfBytesUsingEncoding: NSUTF8StringEncoding]];
|
||||
[content lengthOfBytesUsingEncoding: NSISOLatin1StringEncoding]];
|
||||
}
|
||||
|
||||
// - (NSString *) davResourceType
|
||||
|
||||
Reference in New Issue
Block a user