| 64 | } |
| 65 | |
| 66 | void ImportStreamDialog::OnOk(wxCommandEvent & WXUNUSED(event)) |
| 67 | { |
| 68 | wxArrayInt selitems; |
| 69 | int sels = StreamList->GetSelections(selitems); |
| 70 | for (wxInt32 i = 0; i < sels; i++) |
| 71 | mFile->SetStreamUsage(selitems[i],TRUE); |
| 72 | EndModal( wxID_OK ); |
| 73 | } |
| 74 | |
| 75 | void ImportStreamDialog::OnCancel(wxCommandEvent & WXUNUSED(event)) |
| 76 | { |
nothing calls this directly
no test coverage detected