mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
17 lines
324 B
C++
17 lines
324 B
C++
#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();
|
|
}
|