Write a string to disk via an event to the frame
| 464 | |
| 465 | // Write a string to disk via an event to the frame |
| 466 | void ScanThread::WriteToFile(wxString str) |
| 467 | { |
| 468 | wxCommandEvent event(WRITE_TO_FILE_EVENT, GetId()); |
| 469 | event.SetString(str); |
| 470 | window->GetEventHandler()->AddPendingEvent(event); |
| 471 | } |
| 472 | |
| 473 | // Send an event with the progress of the laser |
| 474 | void ScanThread::SendScanProgress(int laserPos) |
nothing calls this directly
no outgoing calls
no test coverage detected