Fix uninitialized variable.
This commit is contained in:
parent
e4675ee9a6
commit
91f2a0ef1d
|
@ -26,7 +26,8 @@
|
||||||
WX_HTML_REPORT_BOX::WX_HTML_REPORT_BOX( wxWindow* parent, wxWindowID id, const wxPoint& pos,
|
WX_HTML_REPORT_BOX::WX_HTML_REPORT_BOX( wxWindow* parent, wxWindowID id, const wxPoint& pos,
|
||||||
const wxSize& size, long style ) :
|
const wxSize& size, long style ) :
|
||||||
wxHtmlWindow( parent, id, pos, size, style ),
|
wxHtmlWindow( parent, id, pos, size, style ),
|
||||||
m_units( EDA_UNITS::MILLIMETRES )
|
m_units( EDA_UNITS::MILLIMETRES ),
|
||||||
|
m_immediateMode( false )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue