]> err.no Git - scalable-opengroupware.org/commitdiff
fixed gcc4 warnings
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Fri, 15 Jul 2005 00:15:54 +0000 (00:15 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Fri, 15 Jul 2005 00:15:54 +0000 (00:15 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@769 d1b88da0-ebda-0310-925b-ed51d893ca5b

SOGo/SoObjects/Contacts/ChangeLog
SOGo/SoObjects/Contacts/SOGoContactFolder.m
SOGo/SoObjects/Contacts/Version
SOGo/SoObjects/Mailer/ChangeLog
SOGo/SoObjects/Mailer/SOGoDraftObject.m
SOGo/SoObjects/Mailer/SOGoMailBodyPart.m
SOGo/SoObjects/Mailer/SOGoMailObject.m
SOGo/SoObjects/Mailer/Version

index 43d3b0c148a20f0110696c190ac792c92cc74ef2..9896637a705a7c237dfc74c38b9f723d54a090e1 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-15  Helge Hess  <helge.hess@opengroupware.org>
+
+       * SOGoContactFolder.m: fixed a gcc 4.0 warning (v0.9.13)
+
 2005-07-14  Helge Hess  <helge.hess@opengroupware.org>
 
        * SOGoContactFolder.m: use +globallyUniqueObjectId method from
index 23bb95d4b677cac1057c7a38c092adbe6e4d717f..5792643ce3bd101538a11b6ed2d7b3b2422e1b0e 100644 (file)
@@ -98,7 +98,7 @@
 
 /* GET */
 
-- (id)GETAction:(WOContext *)_ctx {
+- (id)GETAction:(id)_ctx {
   // TODO: I guess this should really be done by SOPE (redirect to
   //       default method)
   WOResponse *r;
index a234750e60f3d911c4d5bc3b17485798cafd32e2..fd6a9b550b43c98b5869f9fd30a8864bc9a6fd7b 100644 (file)
@@ -1,6 +1,6 @@
 # version file
 
-SUBMINOR_VERSION:=12
+SUBMINOR_VERSION:=13
 
 # v0.9.12 requires libSOGo            v0.9.54
 # v0.9.9  requires libGDLContentStore v4.5.26
index d2f0236f2253342c3c1423c059e8a1c14090517a..4dc2224213bb0e32fc00762603639f1f34e736ab 100644 (file)
@@ -1,5 +1,8 @@
 2005-07-15  Helge Hess  <helge.hess@opengroupware.org>
 
+       * SOGoMailObject.m, SOGoMailBodyPart.m, SOGoDraftObject.m: fixed gcc4.0
+         warnings (v0.9.104)
+
        * SOGoMailManager.h: fixed a gcc 4.0 warning (v0.9.103)
 
 2005-07-14  Helge Hess  <helge.hess@opengroupware.org>
index cee6d885fbb068f318640bd6ca8198a0d3b4349d..5256090b1d26cec273b3b00f4f0166c8d03e1392 100644 (file)
@@ -829,7 +829,7 @@ static BOOL       debugOn = NO;
   return [NSNumber numberWithBool:YES]; /* delete worked out ... */
 }
 
-- (id)GETAction:(WOContext *)_ctx {
+- (id)GETAction:(id)_ctx {
   /* 
      Override, because SOGoObject's GETAction uses the less efficient
      -contentAsString method.
index 1a01a70696046476d7cb90db78d5a398364005bd..286d59252bbcd66a41b14e7665c6069a133f6224 100644 (file)
@@ -224,7 +224,7 @@ static BOOL debugOn = NO;
 
 /* actions */
 
-- (id)GETAction:(WOContext *)_ctx {
+- (id)GETAction:(id)_ctx {
   WOResponse *r;
   NSData     *data;
   
index 443bd7ca430ba8dd4199b0706df69e99208e2dbd..47832c8ae2dcbde129298cb42de626e3d6b49cff 100644 (file)
@@ -422,7 +422,8 @@ static BOOL debugBodyStructure = NO;
     NSData   *data;
     
     key  = [_fetchKeys objectAtIndex:i];
-    data = [[result objectForKey:key] objectForKey:@"data"];
+    data = [(NSDictionary *)[(NSDictionary *)result objectForKey:key] 
+                           objectForKey:@"data"];
     
     if (![data isNotNull]) {
       [self debugWithFormat:@"got no data fork key: %@", key];
@@ -602,7 +603,7 @@ static BOOL debugBodyStructure = NO;
 
 /* actions */
 
-- (id)GETAction:(WOContext *)_ctx {
+- (id)GETAction:(id)_ctx {
   WOResponse *r;
   NSData     *content;
   
index 33dce1ed66100f958c2655b2d59779e625496887..f1a4f532215e434bc8137d316b646508d98e52b4 100644 (file)
@@ -1,6 +1,6 @@
 # Version file
 
-SUBMINOR_VERSION:=103
+SUBMINOR_VERSION:=104
 
 # v0.9.96 requires libNGMime       v4.5.223
 # v0.9.91 requires libNGMime       v4.5.222