See ChangeLog

Monotone-Parent: 3572e45c321899117c386ff508dc41087a98f488
Monotone-Revision: 4ddc37a5ea373379044dff16ec46aefe043aeadd

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2009-10-24T19:45:13
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Ludovic Marcotte
2009-10-24 19:45:13 +00:00
parent c84611928f
commit 5eda4d4358
2 changed files with 9 additions and 2 deletions
+7
View File
@@ -10,6 +10,13 @@
properties window.
* Updated the French translation with regard to
event delegation support.
* UI/Scheduler/UIxCalListingActions.m
We now handle BOOL as real BOOL when storing them
in the prefs instead of going with NSNumber. No
need to do that and our JSON generator/parser
will handle this properly. This avoid a dump
crash when toying with the "Show completed tasks"
toggle in the calendar module.
2009-10-23 Wolfgang Sourdeau <wsourdeau@inverse.ca>
+2 -2
View File
@@ -1006,8 +1006,8 @@ _computeBlocksPosition (NSArray *blocks)
if (setUserDefault)
{
ud = [[context activeUser] userDefaults];
[ud setObject: [NSNumber numberWithInt: showCompleted]
forKey: @"ShowCompletedTasks"];
[ud setBool: showCompleted
forKey: @"ShowCompletedTasks"];
[ud synchronize];
}