| 211 | |
| 212 | |
| 213 | void CFriendListCtrl::OnViewFiles(wxCommandEvent& WXUNUSED(event)) |
| 214 | { |
| 215 | long index = GetNextItem( -1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED ); |
| 216 | |
| 217 | while( index != -1 ) { |
| 218 | CFriend* cur_friend = reinterpret_cast<CFriend*>(GetItemData(index)); |
| 219 | theApp->friendlist->RequestSharedFileList(cur_friend); |
| 220 | index = GetNextItem( index, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED ); |
| 221 | } |
| 222 | |
| 223 | } |
| 224 | |
| 225 | |
| 226 | void CFriendListCtrl::OnSetFriendslot(wxCommandEvent& event) |
nothing calls this directly
no test coverage detected