mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 13:04:05 -08:00
User fix for Issue 726
git-svn-id: https://zxing.googlecode.com/svn/trunk@1719 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
ea813c3f88
commit
1b72e86760
|
@ -53,9 +53,9 @@
|
||||||
[parts addObject:@""];
|
[parts addObject:@""];
|
||||||
[parts addObject:[NSString stringWithFormat:NSLocalizedString(@"EmailParsedResult Display: Body", @"%@"), self.body]];
|
[parts addObject:[NSString stringWithFormat:NSLocalizedString(@"EmailParsedResult Display: Body", @"%@"), self.body]];
|
||||||
}
|
}
|
||||||
NSString *res = [parts componentsJoinedByString:@"\n"];
|
NSString* string = [NSString stringWithString:[parts componentsJoinedByString:@"\n"]];
|
||||||
[parts release];
|
[parts release];
|
||||||
return res;
|
return string;
|
||||||
}
|
}
|
||||||
|
|
||||||
+ (NSString *)typeName {
|
+ (NSString *)typeName {
|
||||||
|
|
Loading…
Reference in a new issue