]> err.no Git - sope/commitdiff
fixed some gcc 4.0 warning
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Wed, 27 Jul 2005 13:57:05 +0000 (13:57 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Wed, 27 Jul 2005 13:57:05 +0000 (13:57 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@942 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-mime/ChangeLog
sope-mime/NGImap4/ChangeLog
sope-mime/NGImap4/NGImap4Connection.m
sope-mime/Version

index 6934267c07a9a3e6c05d53ad8e367deb409f856a..5cb7ba38e6829dd463f63e687a894ac3b01a8fe2 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-27  Helge Hess  <helge.hess@skyrix.com>
+
+       * NGImap4: fixed a gcc 4.0 warning (v4.5.231)
+
 2005-07-26  Helge Hess  <helge.hess@opengroupware.org>
 
        * NGImap4: fixed a compatibility issue with Cocoa (v4.5.230)
index 50d8c482a2bddd70c1da2a0a7ed229db5ee85903..79279d5a56260a432afad4cdd554c58544302228 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-27  Helge Hess  <helge.hess@skyrix.com>
+
+       * NGImap4Connection.m: fixed gcc 4.0 warnings
+
 2005-07-26  Helge Hess  <helge.hess@opengroupware.org>
 
        * NGImap4Connection.m: fixed a Cocoa compatibility issue with
index f7a96d8a4f71acabb74ba15feba4d03d872da57a..5fb802e73e609ff4c02d24e5447817dfb95b7058 100644 (file)
@@ -540,19 +540,19 @@ NSArray *SOGoMailGetDirectChildren(NSArray *_array, NSString *_fn) {
   
   /* process results */
   
-  result = [result objectForKey:@"fetch"];
+  result = [(NSDictionary *)result objectForKey:@"fetch"];
   if ([result count] == 0) { /* did not find part */
     [self errorWithFormat:@"did not find part: %@", _partId];
     return nil;
   }
   
   fetch = [result objectAtIndex:0];
-  if ((body = [fetch objectForKey:@"body"]) == nil) {
+  if ((body = [(NSDictionary *)fetch objectForKey:@"body"]) == nil) {
     [self errorWithFormat:@"did not find body in response: %@", result];
     return nil;
   }
   
-  if ((result = [body objectForKey:@"data"]) == nil) {
+  if ((result = [(NSDictionary *)body objectForKey:@"data"]) == nil) {
     [self errorWithFormat:@"did not find data in body: %@", fetch];
     return nil;
   }
@@ -725,14 +725,14 @@ NSArray *SOGoMailGetDirectChildren(NSArray *_array, NSString *_fn) {
   if ((result = [self cachedHierarchyResults]) != nil) {
     NSString *p;
     
-    result = [result objectForKey:@"list"];
+    result = [(NSDictionary *)result objectForKey:@"list"];
     p      = [_url path];
 #if __APPLE__ 
     /* normalized results already have the / in front on libFoundation?! */
     if ([p hasPrefix:@"/"]) 
       p = [p substringFromIndex:1];
 #endif
-    return ([result objectForKey:p] != nil) ? YES : NO;
+    return ([(NSDictionary *)result objectForKey:p] != nil) ? YES : NO;
   }
   
   /* check using IMAP4 select */
index ff670ea8fae2cb05cf7ad0f9cbee1c06bae2e79b..0fb50bf38e602939de607adcbf144e8c7f7a4d75 100644 (file)
@@ -2,7 +2,7 @@
 
 MAJOR_VERSION:=4
 MINOR_VERSION:=5
-SUBMINOR_VERSION:=230
+SUBMINOR_VERSION:=231
 
 # v4.5.214 requires libNGExtensions v4.5.146
 # v4.2.149 requires libNGStreams    v4.2.34