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

MessageHandler: outcomment pop-up message for warnings

parent 48829c6d
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ void MessageHandler(QtMsgType type, const QMessageLogContext& ctx, const QString
if (msg.left(4) == "QXcb")
return;
std::cerr << "WARNING: " << msg.toStdString() << " [" << ctx.function << "]" << std::endl;
QMessageBox::warning(QApplication::activeWindow(), qAppName(), msg);
// QMessageBox::warning(QApplication::activeWindow(), qAppName(), msg);
break;
case QtFatalMsg:
std::cerr << "FATAL: " << msg.toStdString() << " [" << ctx.function << "]" << std::endl;
......
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