]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@197 d1b88da0-ebda-0310-925b-ed51d...
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Fri, 13 Aug 2004 00:12:22 +0000 (00:12 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Fri, 13 Aug 2004 00:12:22 +0000 (00:12 +0000)
SOGo/UI/Scheduler/ChangeLog
SOGo/UI/Scheduler/UIxAppointmentEditor.m
SOGo/UI/Scheduler/Version

index 80aed267c070ddce0c7b737ab64baa347b75eb53..7487ca26c817c57f8625e68dd99a1c10c14fce50 100644 (file)
@@ -1,9 +1,12 @@
-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>
 
index 7f0fe2cb778ed43985675cfc334378e24994eb8f..07ecdbb9e6101085bbd7f1c8c702cae611fdc6d9 100644 (file)
   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;
     
index 8b283eb3b53cdd6a8e556ffea74b87430ca7e635..9c8dad696fbf09aeea17bac42db877c2327d5bbb 100644 (file)
@@ -1,3 +1,3 @@
 # $Id$
 
-SUBMINOR_VERSION:=25
+SUBMINOR_VERSION:=26