signal_hasError

This commit is contained in:
2025-12-01 14:50:15 +03:00
parent c97c86ac55
commit 0b7f772b21
4 changed files with 14 additions and 5 deletions

View File

@@ -85,6 +85,7 @@ signals:
QTcpSocket* sigGetSocket();
void signal_DocsChanged();
void signal_hasError(int code);
public slots:
void slot_LanguageChanged(QString language);
@@ -114,9 +115,10 @@ public:
tr("* check Application for the presence of a folder with a build \n"
"* check SharedData for a folder with the base version and the name base");
SpecMsgBox::CriticalClose(this, textError);
SpecMsgBox::CriticalClose(this, textError);
}
errorCode = code;
emit signal_hasError(code);
}
int hasError() const