aboutsummaryrefslogtreecommitdiff
path: root/debug_functions.cpp
blob: 7206885e0aa0715f685b4bf16585087abda6682c (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();
}