diff --git a/kicad/cli/command_pcb_export_base.h b/kicad/cli/command_pcb_export_base.h index 38ecaefe64..8f68a675a2 100644 --- a/kicad/cli/command_pcb_export_base.h +++ b/kicad/cli/command_pcb_export_base.h @@ -55,7 +55,7 @@ namespace CLI #define DEPRECATED_ARG_PLOT_INVISIBLE_TEXT "--plot-invisible-text" #define DEPRECATED_ARG_PLOT_INVISIBLE_TEXT_DESC "Deprecated. Has no effect." -#define DEPRECATED_ARD_PLOT_INVISIBLE_TEXT_WARNING "--plot-invisible-text has been deprecated as of KiCad 9.0.1. It will have no effect." +#define DEPRECATED_ARG_PLOT_INVISIBLE_TEXT_WARNING "--plot-invisible-text has been deprecated as of KiCad 9.0.1. It will have no effect." #define ARG_FLIP_BOTTOM_PADS "--flip-bottom-pads" #define ARG_UNIQUE_PINS "--unique-pins" diff --git a/kicad/cli/command_pcb_export_dxf.cpp b/kicad/cli/command_pcb_export_dxf.cpp index 342883a8b7..393622ec0f 100644 --- a/kicad/cli/command_pcb_export_dxf.cpp +++ b/kicad/cli/command_pcb_export_dxf.cpp @@ -152,7 +152,7 @@ int CLI::PCB_EXPORT_DXF_COMMAND::doPerform( KIWAY& aKiway ) dxfJob->m_checkZonesBeforePlot = m_argParser.get( ARG_CHECK_ZONES ); if( m_argParser.get( DEPRECATED_ARG_PLOT_INVISIBLE_TEXT ) ) - wxFprintf( stdout, DEPRECATED_ARD_PLOT_INVISIBLE_TEXT_WARNING ); + wxFprintf( stdout, DEPRECATED_ARG_PLOT_INVISIBLE_TEXT_WARNING ); int drillShape = m_argParser.get( ARG_DRILL_SHAPE_OPTION ); dxfJob->m_drillShapeOption = static_cast( drillShape ); diff --git a/kicad/cli/command_pcb_export_gerber.cpp b/kicad/cli/command_pcb_export_gerber.cpp index f1a64b1316..3141e5b435 100644 --- a/kicad/cli/command_pcb_export_gerber.cpp +++ b/kicad/cli/command_pcb_export_gerber.cpp @@ -142,7 +142,7 @@ int CLI::PCB_EXPORT_GERBER_COMMAND::populateJob( JOB_EXPORT_PCB_GERBER* aJob ) aJob->m_argCommonLayers = From_UTF8( m_argParser.get( ARG_COMMON_LAYERS ).c_str() ); if( m_argParser.get( DEPRECATED_ARG_PLOT_INVISIBLE_TEXT ) ) - wxFprintf( stdout, DEPRECATED_ARD_PLOT_INVISIBLE_TEXT_WARNING ); + wxFprintf( stdout, DEPRECATED_ARG_PLOT_INVISIBLE_TEXT_WARNING ); if( !wxFile::Exists( aJob->m_filename ) ) { diff --git a/kicad/cli/command_pcb_export_pdf.cpp b/kicad/cli/command_pcb_export_pdf.cpp index c50bbcfa78..94fb216e7b 100644 --- a/kicad/cli/command_pcb_export_pdf.cpp +++ b/kicad/cli/command_pcb_export_pdf.cpp @@ -151,7 +151,7 @@ int CLI::PCB_EXPORT_PDF_COMMAND::doPerform( KIWAY& aKiway ) pdfJob->m_subtractSolderMaskFromSilk = m_argParser.get( ARG_SUBTRACT_SOLDERMASK ); if( m_argParser.get( DEPRECATED_ARG_PLOT_INVISIBLE_TEXT ) ) - wxFprintf( stdout, DEPRECATED_ARD_PLOT_INVISIBLE_TEXT_WARNING ); + wxFprintf( stdout, DEPRECATED_ARG_PLOT_INVISIBLE_TEXT_WARNING ); pdfJob->m_mirror = m_argParser.get( ARG_MIRROR ); pdfJob->m_blackAndWhite = m_argParser.get( ARG_BLACKANDWHITE ); diff --git a/kicad/cli/command_pcb_export_svg.cpp b/kicad/cli/command_pcb_export_svg.cpp index 80f19a4b08..128d2ed2eb 100644 --- a/kicad/cli/command_pcb_export_svg.cpp +++ b/kicad/cli/command_pcb_export_svg.cpp @@ -151,7 +151,7 @@ int CLI::PCB_EXPORT_SVG_COMMAND::doPerform( KIWAY& aKiway ) svgJob->m_checkZonesBeforePlot = m_argParser.get( ARG_CHECK_ZONES ); if( m_argParser.get( DEPRECATED_ARG_PLOT_INVISIBLE_TEXT ) ) - wxFprintf( stdout, DEPRECATED_ARD_PLOT_INVISIBLE_TEXT_WARNING ); + wxFprintf( stdout, DEPRECATED_ARG_PLOT_INVISIBLE_TEXT_WARNING ); svgJob->m_fitPageToBoard = m_argParser.get( ARG_FIT_PAGE_TO_BOARD );