Fix uninitialized variable.

This commit is contained in:
Jeff Young 2020-10-19 11:28:32 +01:00
parent e4675ee9a6
commit 91f2a0ef1d
1 changed files with 2 additions and 1 deletions

View File

@ -26,7 +26,8 @@
WX_HTML_REPORT_BOX::WX_HTML_REPORT_BOX( wxWindow* parent, wxWindowID id, const wxPoint& pos,
const wxSize& size, long style ) :
wxHtmlWindow( parent, id, pos, size, style ),
m_units( EDA_UNITS::MILLIMETRES )
m_units( EDA_UNITS::MILLIMETRES ),
m_immediateMode( false )
{
}