ref: link argument

This commit is contained in:
semenov
2025-08-13 10:22:14 +03:00
parent 303576b7f9
commit 05e09792d7
27 changed files with 111 additions and 137 deletions

View File

@@ -1,6 +1,11 @@
#include "postprocessorsystem.h"
PostProcessorSystem::PostProcessorSystem(QObject *parent) : QObject(parent){}
PostProcessorSystem::PostProcessorSystem(QObject *parent) :
QObject(parent),
hashComparer(nullptr),
versionContainer(nullptr),
updateController(nullptr),
dataParserOutput(nullptr){}
void PostProcessorSystem::initialize(DataParserOutput *dataParserOutput,
HashComparer *hashComparer,
@@ -54,7 +59,7 @@ void PostProcessorSystem::compareFiles()
updateController->updateFilesOnServer(hashComparer->getFilesForUpdate());
}
void PostProcessorSystem::checkAccessType(QString type)
void PostProcessorSystem::checkAccessType(const QString& type)
{
if(type == "instructor")
{