Рефакт

This commit is contained in:
2025-10-17 17:36:33 +03:00
parent 5c147be57a
commit edadfdf323
7 changed files with 166 additions and 135 deletions

View File

@@ -316,7 +316,7 @@ bool InstructorsAndTraineesWidget::authorizationInstructorDialog(QWidget* parent
// Вычисление MD5 хэша
password = HashTools::hashingMD5string(password);
connectorToServer->authorizationInstructorLocal(login, password);
connectorToServer->sendAuthorizationInstructorLocal(login, password);
return true;
}
@@ -333,7 +333,7 @@ bool InstructorsAndTraineesWidget::authorizationInstructorDialog(QWidget* parent
bool InstructorsAndTraineesWidget::deAuthorizationInstructor(QString login)
{
connectorToServer->deAuthorizationInstructorLocal(login);
connectorToServer->sendDeAuthorizationInstructorLocal(login);
return true;
}