mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-20 14:13:19 +00:00
Monotone-Parent: dd419c699778aed41ce0f743264562f00f9a7225
Monotone-Revision: 6d72460fc711cc8527393aeb0db47f3667ce0f88 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-10-23T21:59:46 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -20,6 +20,7 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#import <Foundation/NSNull.h>
|
||||
#import <Foundation/NSString.h>
|
||||
|
||||
#import "NSArray+Utilities.h"
|
||||
@@ -38,8 +39,11 @@
|
||||
currentObject = [objects nextObject];
|
||||
while (currentObject)
|
||||
{
|
||||
[formattedStrings
|
||||
addObject: [NSString stringWithFormat: format, currentObject]];
|
||||
if ([currentObject isKindOfClass: [NSNull class]])
|
||||
[formattedStrings addObject: @""];
|
||||
else
|
||||
[formattedStrings
|
||||
addObject: [NSString stringWithFormat: format, currentObject]];
|
||||
currentObject = [objects nextObject];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user