fix a minor compil warning
fix a typo in translatable string.
This commit is contained in:
parent
a9bfadd71a
commit
8aa408f0c9
|
@ -607,7 +607,7 @@ EASYEDAPRO::SYM_INFO SCH_EASYEDAPRO_PARSER::ParseSymbol( const std::vector<nlohm
|
||||||
if( !globalNetname.empty() )
|
if( !globalNetname.empty() )
|
||||||
{
|
{
|
||||||
ksymbol->SetDescription( wxString::Format(
|
ksymbol->SetDescription( wxString::Format(
|
||||||
_( "Power symbol creates a global " wxS( "label with name '%s'" ) ),
|
_( "Power symbol creates a global label with name '%s'" ),
|
||||||
globalNetname ) );
|
globalNetname ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2255,9 +2255,10 @@ int EDIT_TOOL::Duplicate( const TOOL_EVENT& aEvent )
|
||||||
static_cast<PAD*>( dupe_item )->SetNumber( padNumber );
|
static_cast<PAD*>( dupe_item )->SetNumber( padNumber );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if( FOOTPRINT* parentFootprint = orig_item->GetParentFootprint() )
|
else if( /*FOOTPRINT* parentFootprint =*/ orig_item->GetParentFootprint() )
|
||||||
{
|
{
|
||||||
// No sub-footprint modifications allowed outside of footprint editor
|
// No sub-footprint modifications allowed outside of footprint editor
|
||||||
|
// and parentFootprint is not (yet?) used
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue