Changes between Initial Version and Version 1 of Ticket #3775


Ignore:
Timestamp:
Oct 7, 2010, 10:22:29 AM (14 years ago)
Author:
nicolaslelong
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3775 – Description

    initial v1  
    1 In method TABFile::GetSpatialRef, on line 1037, the following statement uses 'atof' to convert the SRS_UA_DEGREE_CONV string to double.
     1In method {{{TABFile::GetSpatialRef}}}, on line 1037, the following statement uses {{{atof}}} to convert the SRS_UA_DEGREE_CONV string to double.
    22
    33{{{
     
    1212This causes problems when the current locale has not "." as the decimal separator (results in 0 instead of 0.0174532925199433)
    1313
    14 Simply replacing 'atof' with 'CPLAtof' solves the problem.
     14'''Fix ::'''
     15
     16Simply replacing {{{atof}}} with {{{CPLAtof}}} solves the problem.