7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-20 21:11:43 +00:00

Give virtual destructor to the base SEARCH_HANDLER class

This commit is contained in:
Ian McInerney 2025-01-04 18:59:00 +00:00
parent 7db75e4f50
commit 42a7aa452e

View File

@ -38,6 +38,9 @@ public:
m_name( aName )
{}
virtual ~SEARCH_HANDLER()
{}
wxString GetName() const { return m_name; }
std::vector<std::tuple<wxString, int, wxListColumnFormat>> GetColumns() const