| 653 | ////////////////////////////////////// |
| 654 | |
| 655 | QueueDeleteFile::QueueDeleteFile(HWND hNotify, const char * filePath, int notifyCode, void * notifyData) : |
| 656 | QueueOperation(QueueTypeFileDelete, hNotify, notifyCode, notifyData) |
| 657 | { |
| 658 | m_filePath = SU::strdup(filePath); |
| 659 | } |
| 660 | |
| 661 | QueueDeleteFile::~QueueDeleteFile() { |
| 662 | SU::free(m_filePath); |
nothing calls this directly
no outgoing calls
no test coverage detected