Remove unnecessary copy ctor/operator= definitions

This commit is contained in:
Paul Cornett
2019-02-17 23:09:49 -08:00
parent e08a1d38e1
commit 1229ceb440
8 changed files with 0 additions and 155 deletions

View File

@@ -150,12 +150,6 @@ public:
, m_panel(panel)
{
}
#ifndef SWIG
wxRibbonPanelEvent(const wxRibbonPanelEvent& e) : wxCommandEvent(e)
{
m_panel = e.m_panel;
}
#endif
wxEvent *Clone() const wxOVERRIDE { return new wxRibbonPanelEvent(*this); }
wxRibbonPanel* GetPanel() {return m_panel;}