Initialize variables properly
This commit is contained in:
parent
aa0b0ca7e7
commit
a53f3899d4
|
@ -41,6 +41,7 @@ COMMON_SETTINGS::COMMON_SETTINGS() :
|
|||
m_Env(),
|
||||
m_Input(),
|
||||
m_Graphics(),
|
||||
m_Session(),
|
||||
m_System()
|
||||
{
|
||||
// This only effect the first time KiCad is run. The user's setting will be used for all
|
||||
|
|
|
@ -41,11 +41,13 @@ PAGED_DIALOG::PAGED_DIALOG( wxWindow* aParent, const wxString& aTitle, bool aUse
|
|||
DIALOG_SHIM( aParent, wxID_ANY, aTitle, wxDefaultPosition, wxDefaultSize,
|
||||
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ),
|
||||
m_title( aTitle ),
|
||||
m_dirty( false ),
|
||||
m_errorCtrl( nullptr ),
|
||||
m_errorRow( 0 ),
|
||||
m_errorCol( 0 ),
|
||||
m_auxiliaryButton( nullptr ),
|
||||
m_resetButton( nullptr )
|
||||
m_resetButton( nullptr ),
|
||||
m_cancelButton( nullptr )
|
||||
{
|
||||
auto mainSizer = new wxBoxSizer( wxVERTICAL );
|
||||
SetSizer( mainSizer );
|
||||
|
|
|
@ -65,7 +65,9 @@ LIB_TABLE_ROW* new_clone( const LIB_TABLE_ROW& aRow );
|
|||
class LIB_TABLE_ROW : boost::noncopyable
|
||||
{
|
||||
public:
|
||||
LIB_TABLE_ROW()
|
||||
LIB_TABLE_ROW() :
|
||||
enabled( true ),
|
||||
m_loaded( false )
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -220,8 +222,8 @@ private:
|
|||
wxString options;
|
||||
wxString description;
|
||||
|
||||
bool enabled = true; ///< Whether the LIB_TABLE_ROW is enabled
|
||||
bool m_loaded; ///< Whether the LIB_TABLE_ROW is loaded
|
||||
bool enabled = true; ///< Whether the LIB_TABLE_ROW is enabled
|
||||
bool m_loaded = false; ///< Whether the LIB_TABLE_ROW is loaded
|
||||
|
||||
std::unique_ptr< PROPERTIES > properties;
|
||||
};
|
||||
|
|
|
@ -44,7 +44,8 @@
|
|||
class DRC_TEST_PROVIDER_MISC : public DRC_TEST_PROVIDER
|
||||
{
|
||||
public:
|
||||
DRC_TEST_PROVIDER_MISC()
|
||||
DRC_TEST_PROVIDER_MISC() :
|
||||
m_board( nullptr )
|
||||
{
|
||||
m_isRuleDriven = false;
|
||||
}
|
||||
|
|
|
@ -306,7 +306,8 @@ POINT_EDITOR::POINT_EDITOR() :
|
|||
m_editedPoint( NULL ),
|
||||
m_original( VECTOR2I( 0, 0 ) ),
|
||||
m_altConstrainer( VECTOR2I( 0, 0 ) ),
|
||||
m_refill( false )
|
||||
m_refill( false ),
|
||||
m_altEditMethod( false )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue