Monotone-Parent: 150dfc7aab21ae2733a4b789463f361e2a53ad97

Monotone-Revision: 2cfe32432efb28a38a497bae78a3b7dcc275af26

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-10-24T16:56:34
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-10-24 16:56:34 +00:00
parent 3c0a5d75a6
commit f03e5f5e14
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];