Fix build bug for const incorrectness.
This commit is contained in:
parent
cc64c6af1d
commit
9636086f52
|
@ -1439,7 +1439,7 @@ bool LIB_EDIT_FRAME::SynchronizePins()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void LIB_EDIT_FRAME::refreshSchematic() const
|
void LIB_EDIT_FRAME::refreshSchematic()
|
||||||
{
|
{
|
||||||
// This is not the most effecient way to do this because the changed library may not have
|
// This is not the most effecient way to do this because the changed library may not have
|
||||||
// any effect on the schematic symbol links. Since this is not called very often, take the
|
// any effect on the schematic symbol links. Since this is not called very often, take the
|
||||||
|
|
|
@ -608,7 +608,7 @@ private:
|
||||||
const KICAD_T aFilterList[] = LIB_COLLECTOR::AllItems );
|
const KICAD_T aFilterList[] = LIB_COLLECTOR::AllItems );
|
||||||
void EditField( LIB_FIELD* Field );
|
void EditField( LIB_FIELD* Field );
|
||||||
|
|
||||||
void refreshSchematic() const;
|
void refreshSchematic();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue