pcbnew, PCB_IO_ALTIUM_DESIGNER: fix issues when converting a lib to kicad format.

- add the patch from RigoLigoRLC
- fix issue with illegal chars in filename the char * was missing in list.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/18452
This commit is contained in:
jean-pierre charras
2024-08-11 09:30:22 +02:00
parent 2e4dd4bc3f
commit 62724f9cb6
2 changed files with 19 additions and 3 deletions
+1 -1
View File
@@ -42,7 +42,7 @@
* platforms. This is the list of illegal file name characters for Windows which includes
* the illegal file name characters for Linux and OSX.
*/
static const char illegalFileNameChars[] = "\\/:\"<>|";
static const char illegalFileNameChars[] = "\\/:\"<>|*";
wxString ConvertToNewOverbarNotation( const wxString& aOldStr )