| 316 | ////////////////////////////////////// |
| 317 | |
| 318 | QueueCopyFile::QueueCopyFile(HWND hNotify, const char* externalFile, const char* externalParent, Transfer_Mode tMode, int notifyCode, void* notifyData) : |
| 319 | QueueOperation(QueueTypeCopyFile, hNotify, notifyCode, notifyData), |
| 320 | m_tMode(tMode) |
| 321 | |
| 322 | { |
| 323 | m_externalFile = SU::strdup(externalFile); |
| 324 | m_target = SU::strdup(externalParent); |
| 325 | OutMsg("INIT PARENT: %T", SU::Utf8ToTChar(externalParent)); |
| 326 | } |
| 327 | |
| 328 | QueueCopyFile::~QueueCopyFile() { |
| 329 | SU::free(m_externalFile); |
nothing calls this directly
no outgoing calls
no test coverage detected