| 771 | ////////////////////////////////////// |
| 772 | |
| 773 | QueueChmodFile::QueueChmodFile(HWND hNotify, const char * filePath, const char * newMode, int notifyCode, void * notifyData) : |
| 774 | QueueOperation(QueueTypeFileChmod, hNotify, notifyCode, notifyData) |
| 775 | { |
| 776 | m_filePath = SU::strdup(filePath); |
| 777 | m_newMode = SU::strdup(newMode); |
| 778 | } |
| 779 | |
| 780 | QueueChmodFile::~QueueChmodFile() { |
| 781 | SU::free(m_filePath); |
nothing calls this directly
no outgoing calls
no test coverage detected