| 33 | } |
| 34 | |
| 35 | void DumpWindow::OnMainMove(const wxPoint& main_position, const wxSize& main_size) |
| 36 | { |
| 37 | wxSize size(600, 250); |
| 38 | this->SetSize(size); |
| 39 | |
| 40 | wxPoint position = main_position; |
| 41 | position.y += main_size.GetHeight(); |
| 42 | this->SetPosition(position); |
| 43 | } |
| 44 | |
| 45 | void DumpWindow::OnGameLoaded() |
| 46 | { |
no test coverage detected