See ChangeLog for full details.

Monotone-Parent: 4ebf80607b2a71f3b2192bd3ba8c310f15bd37f5
Monotone-Revision: 8b8f40b39b92d25a5eb1161d5efe0bd91fd3e207

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2007-10-10T18:44:26
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Ludovic Marcotte
2007-10-10 18:44:26 +00:00
parent dc48bb9e4c
commit 778658c75a
11 changed files with 272 additions and 35 deletions
+4 -3
View File
@@ -373,14 +373,15 @@
- (NSArray *) priorities
{
/* 0 == undefined
5 == normal
9 == low
5 == medium
1 == high
*/
static NSArray *priorities = nil;
if (!priorities)
{
priorities = [NSArray arrayWithObjects: @"0", @"5", @"1", nil];
priorities = [NSArray arrayWithObjects: @"9", @"5", @"1", nil];
[priorities retain];
}
@@ -856,8 +857,8 @@
[component setUid: [clientObject nameInContainer]];
[component setCreated: now];
[component setTimeStampAsDate: now];
[component setPriority: @"0"];
}
[component setPriority: priority];
[component setLastModified: now];
}