From 1d5158dbafc816c526e86a030994ba581be8112c Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Tue, 9 May 2023 17:44:33 +0200 Subject: [PATCH] Try to fix a compil issue. --- eeschema/eeschema_jobs_handler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eeschema/eeschema_jobs_handler.cpp b/eeschema/eeschema_jobs_handler.cpp index 9996355492..3f5bd89241 100644 --- a/eeschema/eeschema_jobs_handler.cpp +++ b/eeschema/eeschema_jobs_handler.cpp @@ -492,7 +492,7 @@ int EESCHEMA_JOBS_HANDLER::doSymExportSvg( JOB_SYM_EXPORT_SVG* aSvgJob, wxPrintf( _( "Plotting symbol '%s' unit %d %sto '%s'\n" ), symbol->GetName(), unit, - convert == 2 ? _( "(De Morgan) " ) : wxS( "" ), + convert == 2 ? _( "(De Morgan) " ) : wxString( "" ), fn.GetFullPath() ); } else @@ -502,7 +502,7 @@ int EESCHEMA_JOBS_HANDLER::doSymExportSvg( JOB_SYM_EXPORT_SVG* aSvgJob, convert == 2 ? wxS( "_demorgan" ) : wxS( "" ) ) ); wxPrintf( _( "Plotting symbol '%s' %sto '%s'\n" ), symbol->GetName(), - convert == 2 ? _( "(De Morgan) " ) : wxS( "" ), + convert == 2 ? _( "(De Morgan) " ) : wxString( "" ), fn.GetFullPath() ); }