merge of '144891fa296b6c974c0d29524a0c1c6609d48279'

and '2cfe32432efb28a38a497bae78a3b7dcc275af26'

Monotone-Parent: 144891fa296b6c974c0d29524a0c1c6609d48279
Monotone-Parent: 2cfe32432efb28a38a497bae78a3b7dcc275af26
Monotone-Revision: 73129aff4f6b4b95f21676585470ad140c466afe

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-10-24T16:56:45
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-10-24 16:56:45 +00:00
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2007-10-24 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* GCSFolderManager.m ([GCSFolderManager -baseTableNameWithUID:]):
prefix the table names with "sogo" to avoid problems with
digits-only identifiers.
2007-10-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* GCSFolderManager.m ([GCSFolderManager -baseTableNameWithUID:]):

View File

@@ -624,7 +624,7 @@ static NSCharacterSet *asciiAlphaNumericCS = nil;
unsigned int count, max, done;
NSMutableString *newUID;
newUID = [NSMutableString string];
newUID = [NSMutableString stringWithString: @"sogo"];
now = [NSDate date];
max = [_uid length];