Files
RRJServer/InstructorsAndTrainees/connectorToServer/Core/notifycontroller.cpp
2025-01-22 10:32:05 +03:00

17 lines
317 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("Error"));
warning.exec();
}