| 222 | ////////////////////////////////////// |
| 223 | |
| 224 | QueueDownload::QueueDownload(HWND hNotify, const char * externalFile, const TCHAR * localFile, Transfer_Mode tMode, int notifyCode, void * notifyData) : |
| 225 | QueueOperation(QueueTypeDownload, hNotify, notifyCode, notifyData), |
| 226 | m_tMode(tMode) |
| 227 | { |
| 228 | m_localFile = SU::DupString(localFile); |
| 229 | m_externalFile = SU::strdup(externalFile); |
| 230 | } |
| 231 | |
| 232 | QueueDownload::~QueueDownload() { |
| 233 | SU::FreeTChar(m_localFile); |
nothing calls this directly
no outgoing calls
no test coverage detected