From 8e317591913a840a88e8e4fae3e91826d76f39eb Mon Sep 17 00:00:00 2001 From: Mark Roszko Date: Thu, 21 Mar 2024 03:28:44 +0000 Subject: [PATCH] Fix hopefully the last build breakage --- kicad/import_proj.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kicad/import_proj.cpp b/kicad/import_proj.cpp index a348e85d4c..df279fe47e 100644 --- a/kicad/import_proj.cpp +++ b/kicad/import_proj.cpp @@ -152,7 +152,7 @@ void IMPORT_PROJ_HELPER::ImportIndividualFile( KICAD_T aFT, int aImportedFileTyp ss << aImportedFileType << '\n' << TO_UTF8( appImportFile ); for( const auto& [key, value] : m_properties ) - ss << '\n' << key << '\n' << wxString( value ); + ss << '\n' << key << '\n' << value.wx_str(); std::string packet = ss.str(); frame->Kiway().ExpressMail( frame_type, MAIL_IMPORT_FILE, packet, m_frame );