| 506 | } |
| 507 | |
| 508 | void DownloadCtrlRemoveFile(CPartFile* file) |
| 509 | { |
| 510 | if (theApp->ECServerHandler && theApp->ECServerHandler->m_ec_notifier) { |
| 511 | theApp->ECServerHandler->m_ec_notifier->DownloadFile_RemoveFile(file); |
| 512 | } |
| 513 | #ifndef AMULE_DAEMON |
| 514 | if (theApp->amuledlg->m_transferwnd && theApp->amuledlg->m_transferwnd->downloadlistctrl) { |
| 515 | theApp->amuledlg->m_transferwnd->downloadlistctrl->RemoveFile(file); |
| 516 | } |
| 517 | #endif |
| 518 | } |
| 519 | |
| 520 | void DownloadCtrlSort() |
| 521 | { |
nothing calls this directly
no test coverage detected