Monotone-Parent: 2cad87365f0a0c5651f8609b76b87ed5eeb351c4

Monotone-Revision: 8b81870c2b6bc608846d32e8e0b91c60d47ebb6a

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-07-19T01:26:45
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2012-07-19 01:26:45 +00:00
parent 124f3f995e
commit 3ddba08a9e
2 changed files with 11 additions and 0 deletions
+4
View File
@@ -1,5 +1,9 @@
2012-07-18 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIApplication.m (-init): a WEResourceManager is
setup for the application so that page templates can be properly
be initialized.
* OpenChange/MAPIStoreDBMessage.m (-objectVersion): shift the
version number by 16 bits, instead of doing it in -save.
(-save): don t swap the bytes of the version number as it would
+7
View File
@@ -22,6 +22,7 @@
#import <Foundation/NSUserDefaults.h>
#import <Foundation/NSTimeZone.h>
#import <WEExtensions/WEResourceManager.h>
#import <SOGo/SOGoProductLoader.h>
#import <SOGo/SOGoSystemDefaults.h>
@@ -46,12 +47,18 @@ MAPIApplication *MAPIApp = nil;
{
if (!MAPIApp)
{
WEResourceManager *rm;
// TODO publish
[iCalEntityObject initializeSOGoExtensions];
MAPIApp = [super init];
[MAPIApp retain];
rm = [[WEResourceManager alloc] init];
[self setResourceManager:rm];
[rm release];
utcTZ = [NSTimeZone timeZoneWithName: @"UTC"];
[utcTZ retain];
}