From c238a5b76696f5abf8948b1d3afd05b295a39a54 Mon Sep 17 00:00:00 2001 From: wmayer Date: Thu, 28 Aug 2014 15:47:09 +0200 Subject: [PATCH] + minor fix of output format --- src/Gui/Application.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Gui/Application.cpp b/src/Gui/Application.cpp index f50800d3a0..6c26b8663c 100644 --- a/src/Gui/Application.cpp +++ b/src/Gui/Application.cpp @@ -1623,11 +1623,11 @@ void Application::runApplication(void) } #if QT_VERSION >= 0x040200 if (!QGLFramebufferObject::hasOpenGLFramebufferObjects()) { - Base::Console().Log("This system does not support framebuffer objects"); + Base::Console().Log("This system does not support framebuffer objects\n"); } #endif if (!QGLPixelBuffer::hasOpenGLPbuffers()) { - Base::Console().Log("This system does not support pbuffers"); + Base::Console().Log("This system does not support pbuffers\n"); } QGLFormat::OpenGLVersionFlags version = QGLFormat::openGLVersionFlags ();