| 689 | ////////////////////////////////////// |
| 690 | |
| 691 | QueueRenameFile::QueueRenameFile(HWND hNotify, const char * filePath, const char * newpath, int notifyCode, void * notifyData) : |
| 692 | QueueOperation(QueueTypeFileRename, hNotify, notifyCode, notifyData) |
| 693 | { |
| 694 | m_filePath = SU::strdup(filePath); |
| 695 | m_newPath = SU::strdup(newpath); |
| 696 | } |
| 697 | |
| 698 | QueueRenameFile::~QueueRenameFile() { |
| 699 | SU::free(m_filePath); |
nothing calls this directly
no outgoing calls
no test coverage detected