Monotone-Parent: f84a8ee34fde286386429490ca9126042402c390

Monotone-Revision: 222083e95ee04558a1c46c2bcf14f8fb5ccebb98

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-04-05T00:43:57
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-04-05 00:43:57 +00:00
parent 02e551d324
commit ae3b315468
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2011-04-04 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Scheduler/UIxCalListingActions.m
(-_fillBlocks:withEvent:withNumber:): fixed type confusion between
char * and NSString * that could cause a crash under certain
circumstances.
2011-04-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* Tests/Unit/TestSBJsonParser.m (-test_parseJSONString): input and

View File

@ -702,7 +702,7 @@ _userStateInEvent (NSArray *event)
offset = ((currentStart - startSecs)
/ dayLength);
if (offset >= [blocks count])
[self errorWithFormat: "event '%@' has a computed offset that"
[self errorWithFormat: @"event '%@' has a computed offset that"
@" overflows the amount of blocks (skipped)",
[event objectAtIndex: eventNameIndex]];
else