lib-cache-rescue coding style fix. lib-cache-rescue set default button OK in dialog.
This commit is contained in:
parent
425ddb92a7
commit
69de718910
|
@ -86,6 +86,7 @@ DIALOG_RESCUE_EACH::DIALOG_RESCUE_EACH( SCH_EDIT_FRAME* aParent, std::vector<RES
|
|||
m_insideUpdateEvent( false )
|
||||
{
|
||||
m_Config = Kiface().KifaceSettings();
|
||||
m_stdButtonsOK->SetDefault();
|
||||
}
|
||||
|
||||
|
||||
|
@ -99,10 +100,10 @@ bool DIALOG_RESCUE_EACH::TransferDataToWindow()
|
|||
if( !wxDialog::TransferDataToWindow() )
|
||||
return false;
|
||||
|
||||
m_ListOfConflicts->AppendToggleColumn( _("Rescue symbol") );
|
||||
m_ListOfConflicts->AppendTextColumn( _("Symbol name") );
|
||||
m_ListOfInstances->AppendTextColumn( _("Reference") );
|
||||
m_ListOfInstances->AppendTextColumn( _("Value") );
|
||||
m_ListOfConflicts->AppendToggleColumn( _( "Rescue symbol" ) );
|
||||
m_ListOfConflicts->AppendTextColumn( _( "Symbol name" ) );
|
||||
m_ListOfInstances->AppendTextColumn( _( "Reference" ) );
|
||||
m_ListOfInstances->AppendTextColumn( _( "Value" ) );
|
||||
PopulateConflictList();
|
||||
PopulateInstanceList();
|
||||
|
||||
|
@ -152,7 +153,7 @@ void DIALOG_RESCUE_EACH::PopulateInstanceList()
|
|||
|
||||
data.clear();
|
||||
data.push_back( each_component->GetRef( & m_Parent->GetCurrentSheet() ) );
|
||||
data.push_back( valueField ? valueField->GetText() : wxT("") );
|
||||
data.push_back( valueField ? valueField->GetText() : wxT( "" ) );
|
||||
m_ListOfInstances->AppendItem( data );
|
||||
|
||||
}
|
||||
|
|
|
@ -247,7 +247,7 @@ static void find_rescues( std::vector<SCH_COMPONENT*>& aComponents, PART_LIBS* a
|
|||
static PART_LIB* create_rescue_library( wxFileName& aFileName )
|
||||
{
|
||||
wxFileName fn( g_RootSheet->GetScreen()->GetFileName() );
|
||||
fn.SetName( fn.GetName() + wxT("-rescue") );
|
||||
fn.SetName( fn.GetName() + wxT( "-rescue" ) );
|
||||
fn.SetExt( SchematicLibraryFileExtension );
|
||||
aFileName.SetPath( fn.GetPath() );
|
||||
aFileName.SetName( fn.GetName() );
|
||||
|
@ -321,7 +321,7 @@ bool SCH_EDIT_FRAME::RescueCacheConflicts( bool aRunningOnDemand )
|
|||
get_components( components );
|
||||
prj = &Prj();
|
||||
libs = prj->SchLibs();
|
||||
part_name_suffix = wxT("-RESCUE-") + prj->GetProjectName();
|
||||
part_name_suffix = wxT( "-RESCUE-" ) + prj->GetProjectName();
|
||||
|
||||
// Start!
|
||||
find_rescues( components, libs, candidates );
|
||||
|
|
Loading…
Reference in New Issue