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:
+1
-1
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user