Monotone-Parent: 8f975744191cf3dc8dda26a64eb8f5b861a2c570

Monotone-Revision: 9981beed9a8901d08a5b916dc336af3cbffb185b

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-20T21:12:28
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-10-20 21:12:28 +00:00
parent c3b8676ce7
commit 74a29216f9
2 changed files with 7 additions and 2 deletions
+4
View File
@@ -1,5 +1,9 @@
2006-10-20 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoAppointmentFolder.m
([SOGoAppointmentFolder
-fetchFields:_fieldsfromFolder:_folderfrom:_startDateto:_endDatecomponent:_component]): set ownership of returned records by adding an "owner" key to the resulting dictionaries.
* SoObjects/SOGo/NSObject+Owner.[hm]: removed module since it's a
bad way of handling ownership that way.
@@ -732,8 +732,9 @@ static NSNumber *sharedYes = nil;
if (logger)
[self debugWithFormat:@"returning %i records", [ma count]];
[ma makeObjectsPerformSelector: @selector (setOwnerByLogin:)
withObject: owner];
[ma makeObjectsPerform: @selector (setObject:forKey:)
withObject: owner
withObject: @"owner"];
return ma;
}