Index: main.cpp =================================================================== diff -u -r465a935949a85d3d1bebd11979737ff38ef96122 -r8f336b528afb37743d4ae3404c810e6a9e4422c4 --- main.cpp (.../main.cpp) (revision 465a935949a85d3d1bebd11979737ff38ef96122) +++ main.cpp (.../main.cpp) (revision 8f336b528afb37743d4ae3404c810e6a9e4422c4) @@ -357,6 +357,8 @@ //! - Initializing required thread types Threads::registerTypes(); + bool guiStarted = startGui(); + //! - Initializing Logger if(_Logger.init(Threads::_Logger_Thread)) { _Logger.enableConsoleOut(gConsoleoutLogs); @@ -412,7 +414,7 @@ //! - Initialize the QML Viewer and starts GUI int app_exec = -1; LOG_DEBUG("UI Initializing"); - if ( startGui() ) { + if ( guiStarted /*startGui()*/ ) { LOG_DEBUG("UI Initialized"); _ApplicationController .startPOST(); app_exec = app.exec();