Stop file checksum compare when stop is called

* When FileWatcher::stop() is called, also stop the timer that checks the file checksum every 30 seconds.
This commit is contained in:
Jonathan White 2020-04-22 09:37:58 -04:00
parent 7f98323962
commit 1a3dc2145d

View File

@ -87,6 +87,7 @@ void FileWatcher::stop()
}
m_filePath.clear();
m_fileChecksum.clear();
m_fileChecksumTimer.stop();
m_fileChangeDelayTimer.stop();
}