| 97 | } |
| 98 | |
| 99 | void UpdateProgress(const wxString& text, float progress) |
| 100 | { |
| 101 | mText->SetLabel(text); |
| 102 | mText->SetToolTip(text); |
| 103 | mProgress->SetValue(mProgress->GetRange() * progress); |
| 104 | } |
| 105 | |
| 106 | void OnShow(wxShowEvent& evt) |
| 107 | { |
no test coverage detected