mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
16 lines
323 B
C++
16 lines
323 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();
|
|
}
|