Fix typo.
This commit is contained in:
parent
65b89116e1
commit
bb74100fe2
|
@ -3441,24 +3441,24 @@ static struct FOOTPRINT_DESC
|
||||||
&FOOTPRINT::SetOrientationDegrees, &FOOTPRINT::GetOrientationDegrees,
|
&FOOTPRINT::SetOrientationDegrees, &FOOTPRINT::GetOrientationDegrees,
|
||||||
PROPERTY_DISPLAY::PT_DEGREE ) );
|
PROPERTY_DISPLAY::PT_DEGREE ) );
|
||||||
|
|
||||||
const wxString groupFootprint = _HKI( "Fields" );
|
const wxString groupFields = _HKI( "Fields" );
|
||||||
|
|
||||||
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Reference" ),
|
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Reference" ),
|
||||||
&FOOTPRINT::SetReference, &FOOTPRINT::GetReferenceAsString ),
|
&FOOTPRINT::SetReference, &FOOTPRINT::GetReferenceAsString ),
|
||||||
groupFootprint );
|
groupFields );
|
||||||
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Value" ),
|
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Value" ),
|
||||||
&FOOTPRINT::SetValue, &FOOTPRINT::GetValueAsString ),
|
&FOOTPRINT::SetValue, &FOOTPRINT::GetValueAsString ),
|
||||||
groupFootprint );
|
groupFields );
|
||||||
|
|
||||||
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Library Link" ),
|
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Library Link" ),
|
||||||
NO_SETTER( FOOTPRINT, wxString ), &FOOTPRINT::GetFPIDAsString ),
|
NO_SETTER( FOOTPRINT, wxString ), &FOOTPRINT::GetFPIDAsString ),
|
||||||
groupFootprint );
|
groupFields );
|
||||||
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Library Description" ),
|
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Library Description" ),
|
||||||
NO_SETTER( FOOTPRINT, wxString ), &FOOTPRINT::GetLibDescription ),
|
NO_SETTER( FOOTPRINT, wxString ), &FOOTPRINT::GetLibDescription ),
|
||||||
groupFootprint );
|
groupFields );
|
||||||
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Keywords" ),
|
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Keywords" ),
|
||||||
NO_SETTER( FOOTPRINT, wxString ), &FOOTPRINT::GetKeywords ),
|
NO_SETTER( FOOTPRINT, wxString ), &FOOTPRINT::GetKeywords ),
|
||||||
groupFootprint );
|
groupFields );
|
||||||
|
|
||||||
const wxString groupAttributes = _HKI( "Attributes" );
|
const wxString groupAttributes = _HKI( "Attributes" );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue