mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 10:13:19 +02:00
12 lines
316 B
C++
12 lines
316 B
C++
|
#include <dialogs/dialog_erc_job_config.h>
|
||
|
|
||
|
DIALOG_ERC_JOB_CONFIG::DIALOG_ERC_JOB_CONFIG( wxWindow* parent, JOB_SCH_ERC* aJob ) :
|
||
|
DIALOG_RC_JOB( parent, aJob, _( "ERC Job Configuration" ) ),
|
||
|
m_ercJob( aJob )
|
||
|
{
|
||
|
m_cbAllTrackViolations->Hide();
|
||
|
m_cbSchParity->Hide();
|
||
|
|
||
|
Fit();
|
||
|
Layout();
|
||
|
}
|