feat: add versionChanger for GUI

This commit is contained in:
semenov
2025-01-21 11:33:51 +03:00
parent 97fee998bb
commit 3e95be4447
29 changed files with 1259 additions and 9 deletions

View File

@@ -0,0 +1,16 @@
#include "notifycontroller.h"
NotifyController::NotifyController(QObject *parent) : QObject(parent)
{
}
void NotifyController::showWarning(QString text)
{
QMessageBox warning;
warning.setText(text);
warning.setIcon(QMessageBox::Warning);
warning.setWindowTitle(tr("Ошибка"));
warning.exec();
}