From e109b5883fc12379bd2b72e8540c7a853383ecc7 Mon Sep 17 00:00:00 2001 From: Marek Roszko Date: Thu, 10 Nov 2022 21:32:02 -0500 Subject: [PATCH] Replace string with extension variable --- eeschema/dialogs/dialog_netlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/dialogs/dialog_netlist.cpp b/eeschema/dialogs/dialog_netlist.cpp index d2150db12b..07170bf6d2 100644 --- a/eeschema/dialogs/dialog_netlist.cpp +++ b/eeschema/dialogs/dialog_netlist.cpp @@ -305,7 +305,7 @@ void NETLIST_DIALOG::OnRunExternSpiceCommand( wxCommandEvent& event ) // Calculate the netlist filename and options wxFileName fn = m_Parent->Schematic().GetFileName(); - fn.SetExt( wxT( "cir" ) ); + fn.SetExt( SpiceFileExtension ); if( settings.m_SpiceAdjustPassiveValues ) netlist_opt |= NETLIST_EXPORTER_SPICE::OPTION_ADJUST_PASSIVE_VALS;