forked from organicmaps/organicmaps-tmp
[iOS] memory leak fix
This commit is contained in:
parent
8c48de5ae2
commit
891d7dcff2
1 changed files with 2 additions and 2 deletions
|
@ -315,8 +315,8 @@ typedef enum {APIPOINT, POI, MYPOSITION} Type;
|
|||
result = [NSString stringWithFormat:@"%.05f %.05f", m_apiPoint.m_lat, m_apiPoint.m_lon];
|
||||
else
|
||||
result = [NSString stringWithFormat:@"%.05f %.05f", MercatorBounds::YToLat(m_point.y), MercatorBounds::XToLon(m_point.x)];
|
||||
NSLocale * decimalPointLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
|
||||
return [[[NSString alloc] initWithFormat:@"%@" locale:decimalPointLocale,result] autorelease];
|
||||
NSLocale * decimalPointLocale = [[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"] autorelease];
|
||||
return [[[NSString alloc] initWithFormat:@"%@" locale:decimalPointLocale, result] autorelease];
|
||||
}
|
||||
|
||||
-(void)dealloc
|
||||
|
|
Loading…
Add table
Reference in a new issue