| 62 | } |
| 63 | |
| 64 | DigitalConsoleFrame::~DigitalConsoleFrame() |
| 65 | { |
| 66 | // Disconnect Events |
| 67 | this->Disconnect( wxEVT_CLOSE_WINDOW, wxCloseEventHandler( DigitalConsoleFrame::OnClose ) ); |
| 68 | m_clearButton->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DigitalConsoleFrame::OnClear ), NULL, this ); |
| 69 | m_copyButton->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DigitalConsoleFrame::OnCopy ), NULL, this ); |
| 70 | m_pauseButton->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DigitalConsoleFrame::OnPause ), NULL, this ); |
| 71 | this->Disconnect( wxID_ANY, wxEVT_TIMER, wxTimerEventHandler( DigitalConsoleFrame::DoRefresh ) ); |
| 72 | |
| 73 | } |
nothing calls this directly
no outgoing calls
no test coverage detected