diff --git a/pcbnew/plugins/fabmaster/import_fabmaster.h b/pcbnew/plugins/fabmaster/import_fabmaster.h index 73fc3eb72e..07a26bf4ae 100644 --- a/pcbnew/plugins/fabmaster/import_fabmaster.h +++ b/pcbnew/plugins/fabmaster/import_fabmaster.h @@ -53,8 +53,16 @@ public: using single_row = std::vector; FABMASTER() : - has_pads( false ), has_comps( false ), has_graphic( false ), - has_nets( false ), has_pins( false ) + has_pads( false ), + has_comps( false ), + has_graphic( false ), + has_nets( false ), + has_pins( false ), + m_progressReporter( nullptr ), + m_doneCount( 0 ), + m_lastProgressCount( 0 ), + m_totalCount( 0 ) + {} bool Read( const std::string& aFile );