From 182f442a4dddce0d1ed0162652fe87bb77bca571 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Mon, 5 Dec 2011 15:19:45 +0000 Subject: [PATCH] Monotone-Parent: a87ea069b19e3f7bd1333de3fb1a25fc04303484 Monotone-Revision: dd98907b2d09b3cd66d8a6ef15da440b85e98478 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-12-05T15:19:45 --- ChangeLog | 3 +++ UI/Scheduler/UIxComponentEditor.m | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1a27e7f41..34f354f0f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2011-12-05 Wolfgang Sourdeau + * UI/Scheduler/UIxComponentEditor.m (-setCategory): ensure that + the new category is reported in the "categories" ivar. + * SoObjects/Appointments/iCalEvent+SOGo.m (-quickRecord): -[iCalEntityObject categories] returns an NSArray that we need to convert to a string for the database content. diff --git a/UI/Scheduler/UIxComponentEditor.m b/UI/Scheduler/UIxComponentEditor.m index 367478dda..6fd48ee8e 100644 --- a/UI/Scheduler/UIxComponentEditor.m +++ b/UI/Scheduler/UIxComponentEditor.m @@ -998,7 +998,7 @@ iRANGE(2); - (void) setCategory: (NSString *) newCategory { - ASSIGN (category, newCategory); + ASSIGN (categories, [NSArray arrayWithObject: newCategory]); } - (NSString *) category