See ChangeLog.

Monotone-Parent: e4a697198e9d44e460b6a4c27b94149145803430
Monotone-Revision: 1f603d18ef908652156b3dbae521f53c6527c63c

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-12-23T16:10:38
This commit is contained in:
Francis Lachapelle
2011-12-23 16:10:38 +00:00
parent 5d5691229a
commit 1f38df80e1
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
2011-12-23 Francis Lachapelle <flachapelle@inverse.ca>
* Tools/SOGoToolUserPreferences.m (-run): fixed possible out of
bound exception when parsing arguments.
2011-12-22 Francis Lachapelle <flachapelle@inverse.ca>
* UI/Scheduler/UIxTaskEditor.m (-takeValuesFromRequest:inContext:): remove alarms
+1 -1
View File
@@ -192,10 +192,10 @@ typedef enum
}
key = [arguments objectAtIndex: i++];
value = [arguments objectAtIndex: i++];
if (max > i)
{
value = [arguments objectAtIndex: i++];
if ([value caseInsensitiveCompare: @"-f"] == NSOrderedSame)
{
if (max > i)