You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
335 B
13 lines
335 B
#include "errorhandler.h"
|
|
#include <QMessageBox>
|
|
|
|
void ErrorHandler::showWarning(QWidget* parent, const QString& title, const QString& msg) {
|
|
QMessageBox::warning(parent, title, msg);
|
|
}
|
|
|
|
void ErrorHandler::showCritical(QWidget* parent, const QString& title, const QString& msg) {
|
|
QMessageBox::critical(parent, title, msg);
|
|
}
|
|
|
|
|