mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-27 19:45:43 +03:00
13 lines
285 B
C++
13 lines
285 B
C++
#include "notifycontroller.h"
|
|
#include "specialmessagebox.h"
|
|
|
|
NotifyController::NotifyController(QObject *parent) : QObject(parent)
|
|
{
|
|
|
|
}
|
|
|
|
void NotifyController::showWarning(QString text)
|
|
{
|
|
SpecialMessageBox(nullptr, SpecialMessageBox::TypeSpecMsgBox::warningClose, text).exec();
|
|
}
|