bug fixes and merging my development with svn rep.

This commit is contained in:
charras
2007-06-13 15:35:40 +00:00
parent 13f2e75bfa
commit 89b3eb5aa5
39 changed files with 1669 additions and 2440 deletions
+4 -2
View File
@@ -289,7 +289,7 @@ void ChangeSpaces(char * Text, int NewChar)
char * to_point(char * Text)
/**************************/
/* convertit les , en . dans une chaine. utilisé pour compenser
l'internalisation imbecile de la fct printf
l'internalisationde la fct printf
qui genere les flottants avec une virgule au lieu du point
*/
{
@@ -297,7 +297,9 @@ char * line = Text;
if ( Text == NULL ) return NULL;
for ( ; *Text != 0; Text++ )
if (*Text == g_FloatSeparator) *Text = '.';
{
if (*Text == ',') *Text = '.';
}
return line;
}