MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / QueueRenameFile

Method QueueRenameFile

src/QueueOperation.cpp:691–696  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

689//////////////////////////////////////
690
691QueueRenameFile::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
698QueueRenameFile::~QueueRenameFile() {
699 SU::free(m_filePath);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected