Todo: Properties system doesn't like const wxString& getters
Comment out for now
This commit is contained in:
parent
4108099641
commit
940a15c547
|
@ -2811,11 +2811,11 @@ static struct FOOTPRINT_DESC
|
|||
&FOOTPRINT::SetLayer, &FOOTPRINT::GetLayer );
|
||||
layer->SetChoices( fpLayers );
|
||||
propMgr.ReplaceProperty( TYPE_HASH( BOARD_ITEM ), _HKI( "Layer" ), layer );
|
||||
|
||||
/*
|
||||
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Reference" ),
|
||||
&FOOTPRINT::SetReference, &FOOTPRINT::GetReference ) );
|
||||
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Value" ),
|
||||
&FOOTPRINT::SetValue, &FOOTPRINT::GetValue ) );
|
||||
&FOOTPRINT::SetValue, &FOOTPRINT::GetValue ) );*/
|
||||
propMgr.AddProperty( new PROPERTY<FOOTPRINT, double>( _HKI( "Orientation" ),
|
||||
&FOOTPRINT::SetOrientationDegrees, &FOOTPRINT::GetOrientationDegrees,
|
||||
PROPERTY_DISPLAY::PT_DEGREE ) );
|
||||
|
@ -2827,13 +2827,13 @@ static struct FOOTPRINT_DESC
|
|||
PROPERTY_DISPLAY::PT_SIZE ) );
|
||||
propMgr.AddProperty( new PROPERTY<FOOTPRINT, double>( _HKI( "Solderpaste Margin Ratio Override" ),
|
||||
&FOOTPRINT::SetLocalSolderPasteMarginRatio,
|
||||
&FOOTPRINT::GetLocalSolderPasteMarginRatio ) );
|
||||
&FOOTPRINT::GetLocalSolderPasteMarginRatio ) ); /*
|
||||
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Library ID" ),
|
||||
&FOOTPRINT::SetFPIDAsString, &FOOTPRINT::GetFPIDAsString ) );
|
||||
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Description" ),
|
||||
&FOOTPRINT::SetDescription, &FOOTPRINT::GetDescription ) );
|
||||
propMgr.AddProperty( new PROPERTY<FOOTPRINT, wxString>( _HKI( "Keywords" ),
|
||||
&FOOTPRINT::SetKeywords, &FOOTPRINT::GetKeywords ) );
|
||||
&FOOTPRINT::SetKeywords, &FOOTPRINT::GetKeywords ) );*/
|
||||
// TODO zone connection
|
||||
}
|
||||
} _FOOTPRINT_DESC;
|
||||
|
|
Loading…
Reference in New Issue