From aace2271dfeea8020eb9e1cdfdf83d393214474d Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Sun, 11 Aug 2024 07:09:28 -0400 Subject: [PATCH] Add '?' to list of forbidden file name characters. --- common/string_utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/string_utils.cpp b/common/string_utils.cpp index 00c223464a..a45188cfe7 100644 --- a/common/string_utils.cpp +++ b/common/string_utils.cpp @@ -1,7 +1,7 @@ /* * This program source code file is part of KiCad, a free EDA CAD application. * - * Copyright (C) 2004-2023 KiCad Developers, see AUTHORS.txt for contributors. + * Copyright (C) 2004-2023, 2024 KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -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 )