Browse Source

Give virtual destructor to the base SEARCH_HANDLER class

pcb_db
Ian McInerney 10 months ago
parent
commit
42a7aa452e
  1. 3
      include/widgets/search_pane.h

3
include/widgets/search_pane.h

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

Loading…
Cancel
Save