Monotone-Parent: b06d90de35f95b2fca244d963a06f54c84dad4b9

Monotone-Revision: 6c97a1225df3211288924e19ffc57661e947cccb

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-08-23T22:11:55
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-08-23 22:11:55 +00:00
parent 20aa35be72
commit 9a32b3328d
2 changed files with 8 additions and 1 deletions
+4
View File
@@ -1,5 +1,9 @@
2007-08-23 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoAptMailNotification.m
([SOGoAptMailNotification -getSubject]): returns the subject an a
quoted-printable encoded string, if needed.
* SoObjects/Mailer/SOGoDraftObject.m ([NSString
-asQPSubjectString:encoding]): moved method into
NSString+Utilities.m.
@@ -28,6 +28,8 @@
#import <NGExtensions/NSObject+Logs.h>
#import <NGCards/iCalEntityObject.h>
#import <SoObjects/SOGo/NSString+Utilities.h>
#import "SOGoAptMailNotification.h"
@interface SOGoAptMailNotification (PrivateAPI)
@@ -141,7 +143,8 @@ static NSTimeZone *EST = nil;
[self name]];
subject = @"ERROR: missing subject!";
}
return subject;
return [subject asQPSubjectString: @"utf-8"];
}
- (NSString *)getBody {