fix: get rid of the assign function call

This commit is contained in:
albexk 2024-12-09 20:56:58 +03:00
parent 882c288d92
commit 5b9ba8c027
5 changed files with 11 additions and 11 deletions

View file

@ -132,7 +132,7 @@ void SettingsController::backupAppConfig(const QString &fileName)
void SettingsController::restoreAppConfig(const QString &fileName)
{
QByteArray data;
SystemController::readFile(fileName, &data);
SystemController::readFile(fileName, data);
restoreAppConfigFromData(data);
}