ref #59 Change comment for method and name variable.

This commit is contained in:
IgorekLoschinin 2021-06-01 22:39:24 +03:00
parent 6d548b3832
commit 0b0a1c6cb3
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ bool Signer::checkSign(const Config &objConf) {
IFileManager *Signer::searchFileByExt(const QString &extension) {
for (auto itemFM: FileManager) {
for (auto itemFM: _fileManager) {
if (itemFM && itemFM->isSupport(itemFM->toExtension(extension))) {
return itemFM;

View File

@ -31,7 +31,7 @@ public:
/**
* @brief searchFileByExt The method that searches for files with the desired extension.
* @param extension This is the file extension to search.
* @return Returns a pointer to the FileManager of the found extension.
* @return Returns a pointer to the FileManager of the found extension, or nullptr if the file extension was not found.
*/
IFileManager *searchFileByExt(const QString &extension);