Skip to content
Snippets Groups Projects
Commit 66552734 authored by Kai Koehne's avatar Kai Koehne
Browse files

QmlObserver: Fix "Waiting for connection ..." message box on exit (Windows)

Disable the message box feature alltogether: Debugging output should be
captured by QtCreator already.

Task-number: QTCREATORBUG-2748
parent 885260f8
No related branches found
No related tags found
No related merge requests found
...@@ -184,7 +184,9 @@ int main(int argc, char ** argv) ...@@ -184,7 +184,9 @@ int main(int argc, char ** argv)
#if defined (Q_OS_WIN) #if defined (Q_OS_WIN)
// Debugging output is not visible by default on Windows - // Debugging output is not visible by default on Windows -
// therefore show modal dialog with errors instead. // therefore show modal dialog with errors instead.
atexit(showWarnings);
// (Disabled in QmlObserver: We're usually running inside QtCreator anyway, see also QTCREATORBUG-2748)
// atexit(showWarnings);
#endif #endif
#if defined (Q_WS_X11) || defined (Q_WS_MAC) #if defined (Q_WS_X11) || defined (Q_WS_MAC)
......
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