| 410 | |
| 411 | |
| 412 | void CServerWnd::OnInfoListCopy(wxCommandEvent& evt) |
| 413 | { |
| 414 | wxMenu* menu = wxDynamicCast(evt.GetEventObject(), wxMenu); |
| 415 | if (!menu) { |
| 416 | return; |
| 417 | } |
| 418 | wxListCtrl* list = static_cast<wxListCtrl*>(menu->GetClientData()); |
| 419 | CopyInfoListToClipboard(list); |
| 420 | } |
| 421 | |
| 422 | void CServerWnd::OnSashPositionChanging(wxSplitterEvent& evt) |
| 423 | { |
nothing calls this directly
no test coverage detected