DIALOG_MANAGE_REPOSITORIES: fix crash on exit:
A event handler was pushed but not pop-ed. Fixes #9551 https://gitlab.com/kicad/code/kicad/issues/9551
This commit is contained in:
parent
ed3642c5c7
commit
452b9bacba
|
@ -51,6 +51,13 @@ DIALOG_MANAGE_REPOSITORIES::DIALOG_MANAGE_REPOSITORIES(
|
|||
}
|
||||
|
||||
|
||||
DIALOG_MANAGE_REPOSITORIES::~DIALOG_MANAGE_REPOSITORIES()
|
||||
{
|
||||
// Delete the GRID_TRICKS.
|
||||
m_grid->PopEventHandler( true );
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_MANAGE_REPOSITORIES::setColumnWidths()
|
||||
{
|
||||
for( int col = 0; col < m_grid->GetNumberCols(); col++ )
|
||||
|
|
|
@ -42,6 +42,7 @@ protected:
|
|||
public:
|
||||
/** Constructor */
|
||||
DIALOG_MANAGE_REPOSITORIES( wxWindow* parent, std::shared_ptr<PLUGIN_CONTENT_MANAGER> aPcm );
|
||||
~DIALOG_MANAGE_REPOSITORIES();
|
||||
void SetData( const STRING_PAIR_LIST& aData );
|
||||
STRING_PAIR_LIST GetData();
|
||||
|
||||
|
|
Loading…
Reference in New Issue