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:
jean-pierre charras 2021-11-08 17:14:48 +01:00
parent ed3642c5c7
commit 452b9bacba
2 changed files with 8 additions and 0 deletions

View File

@ -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++ )

View File

@ -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();