[iOS] memory leak fix

This commit is contained in:
Kirill Zhdanovich 2013-08-16 22:06:02 +03:00 committed by Alex Zolotarev
parent 8c48de5ae2
commit 891d7dcff2

View file

@ -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