-2004-08-12 Marcus Mueller <znek@mulle-kybernetik.com>
+2004-08-13 Helge Hess <helge.hess@skyrix.com>
+
+ * UIxAppointmentEditor.m: catch a common programming mistake (invoking
+ a method on a method) (v0.9.26)
- * v0.9.25
+2004-08-12 Marcus Mueller <znek@mulle-kybernetik.com>
* UIxAppointmentEditor.[m|wox]: participants are added correctly
- now, resources are still lacking from save.
+ now, resources are still lacking from save. (v0.9.25)
2004-08-12 Marcus Mueller <znek@mulle-kybernetik.com>
NSArray *ps;
unsigned i, count;
WORequest *req;
+
+ if (![[self clientObject] respondsToSelector:@selector(saveContentString:)]){
+ return [NSException exceptionWithHTTPStatus:400 /* invalid request */
+ reason:
+ @"method cannot be invoked on the specified object"];
+ }
req = [[self context] request];
/* receive current representation for save operation */
iCalString = [apt iCalString];
[apt release]; apt = nil;
-
+
{
NSException *ex;