mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-30 18:42:44 +00:00
Monotone-Parent: 9a3d09f13e9068acf26d0472c7db733c9c3d7a77
Monotone-Revision: e954ed06e5f3b59d1a495928a06772585e390070 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-10-19T19:23:57 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2007-10-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* GCSFolderManager.m ([GCSFolderManager -baseTableNameWithUID:]):
|
||||
cast the time interval to an unsigned int.
|
||||
|
||||
2007-08-29 Wolfgang Sourdeau <WSourdeau@Inverse.CA>
|
||||
|
||||
* EOQualifier+GCS.m: rewrote comparison code, now uses UPPER instead of
|
||||
|
||||
@@ -642,7 +642,7 @@ static NSCharacterSet *asciiAlphaNumericCS = nil;
|
||||
}
|
||||
|
||||
return [NSString stringWithFormat: @"%@%u",
|
||||
newUID, [now timeIntervalSince1970]];
|
||||
newUID, (unsigned int) [now timeIntervalSince1970]];
|
||||
}
|
||||
|
||||
- (NSException *)createFolderOfType:(NSString *)_type
|
||||
|
||||
Reference in New Issue
Block a user