Avoid GNUstep warnings

pull/69/merge
Ludovic Marcotte 2015-01-23 16:16:36 -05:00
parent ab12c84887
commit 086361b79a
2 changed files with 3 additions and 2 deletions

View File

@ -20,6 +20,7 @@
*/
#import <Foundation/NSDictionary.h>
#import <Foundation/NSKeyValueCoding.h>
#import <Foundation/NSSet.h>
#import <Foundation/NSString.h>
@ -147,7 +148,7 @@
if ([keys count] == 0)
return folderQualifier;
bindings = [_folder valuesForKeys:keys];
bindings = [_folder dictionaryWithValuesForKeys:keys];
return [folderQualifier qualifierWithBindings:bindings
requiresAllVariables:NO];
}

View File

@ -436,7 +436,7 @@ static NSArray *infoKeys = nil;
- (NSDictionary *) storeInfo
{
[self debugWithFormat:@"storing info ..."];
return [self valuesForKeys: infoKeys];
return [self dictionaryWithValuesForKeys: infoKeys];
}
/* contacts search */