aboutsummaryrefslogtreecommitdiff
path: root/debug_functions.cpp
blob: a77e4ea1f1132426fa4a0db7821555f19303333b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <QMessageBox>

#include "debug_functions.h"

void call_error(QString p_message)
{
  QMessageBox *msgBox = new QMessageBox;

  msgBox->setText("Error: " + p_message);
  msgBox->setWindowTitle("Error");


  msgBox->setWindowModality(Qt::NonModal);
  msgBox->show();
}