Skip to content
Snippets Groups Projects
Commit 0808e191 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

clang-format

parent 54d3498f
No related branches found
No related tags found
1 merge request!1352popup message box upon failed ASSERT (#186)
...@@ -42,9 +42,8 @@ void messageHandler(QtMsgType type, const QMessageLogContext&, const QString& ms ...@@ -42,9 +42,8 @@ void messageHandler(QtMsgType type, const QMessageLogContext&, const QString& ms
"Sorry, you encountered a fatal bug.\n" "Sorry, you encountered a fatal bug.\n"
"The application will terminate.\n" "The application will terminate.\n"
"Please note the following and inform the maintainers.\n\n" "Please note the following and inform the maintainers.\n\n"
+ msg + "\n", + msg + "\n",
QMessageBox::Ok, QMessageBox::Ok, QApplication::activeWindow());
QApplication::activeWindow());
msgbox.exec(); msgbox.exec();
qApp->quit(); qApp->quit();
exit(1); exit(1);
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
#include <QtGlobal> #include <QtGlobal>
#define ASSERT(condition) \ #define ASSERT(condition) \
if (!(condition)) \ if (!(condition)) \
qFatal("Assertion %s failed in %s, line %d", (#condition), __FILE__, __LINE__) qFatal("Assertion %s failed in %s, line %d", (#condition), __FILE__, __LINE__)
#else #else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment