Schematic parity checking for CLI DRC.

This commit is contained in:
Jeff Young
2024-02-02 23:05:37 +00:00
parent 3a95bd1bd1
commit 7cc663ad77
25 changed files with 164 additions and 64 deletions
+2 -2
View File
@@ -34,7 +34,7 @@ namespace BMP2CMP {
static struct IFACE : public KIFACE_BASE
{
bool OnKifaceStart( PGM_BASE* aProgram, int aCtlBits ) override;
bool OnKifaceStart( PGM_BASE* aProgram, int aCtlBits, KIWAY* aKiway ) override;
wxWindow* CreateKiWindow( wxWindow* aParent, int aClassId, KIWAY* aKiway,
int aCtlBits = 0 ) override
@@ -103,7 +103,7 @@ PGM_BASE* PgmOrNull()
#endif
bool IFACE::OnKifaceStart( PGM_BASE* aProgram, int aCtlBits )
bool IFACE::OnKifaceStart( PGM_BASE* aProgram, int aCtlBits, KIWAY* aKiway )
{
return start_common( aCtlBits );
}