string_utils.cpp: add missing char * in illegalFileNameChars list.

This commit is contained in:
jean-pierre charras
2024-08-11 09:33:12 +02:00
parent 2b126bbfad
commit ffe6abb836
+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 )