Use UTF-8 encoding only in kicad files. Under Linux, this was already the case. Under Windows, texts with non ascii characters must be corrected.

This ensure compatibility between platforms.
This commit is contained in:
jean-pierre charras
2011-02-28 19:36:19 +01:00
parent ffa9feda69
commit 92952b70aa
82 changed files with 2329 additions and 2331 deletions
+1 -1
View File
@@ -133,7 +133,7 @@ char* DateAndTime( char* aBuffer )
wxString datetime;
datetime = DateAndTime();
strcpy( aBuffer, CONV_TO_UTF8( datetime ) );
strcpy( aBuffer, TO_UTF8( datetime ) );
return aBuffer;
}