| 580 | ////////////////////////////////////// |
| 581 | |
| 582 | QueueRemoveDir::QueueRemoveDir(HWND hNotify, const char * dirPath, int notifyCode, void * notifyData) : |
| 583 | QueueOperation(QueueTypeDirectoryRemove, hNotify, notifyCode, notifyData) |
| 584 | { |
| 585 | m_dirPath = SU::strdup(dirPath); |
| 586 | } |
| 587 | |
| 588 | QueueRemoveDir::~QueueRemoveDir() { |
| 589 | SU::free(m_dirPath); |
nothing calls this directly
no outgoing calls
no test coverage detected