From: eap Date: Wed, 8 Aug 2007 09:12:36 +0000 (+0000) Subject: PAL16537 (wrong warning message) X-Git-Tag: V4_1_0a1~14 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=178f06e6124b65c0482b5e45d678e58e52ea632b;p=modules%2Fgui.git PAL16537 (wrong warning message) - printf( "* Warning: library %s cannot be found\n", moduleTitle.latin1() ); - printf( "* Module will not be available\n" ); + printf( "* Warning: library %s cannot be found\n", lib.latin1() ); + printf( "* Module %s will not be available in GUI mode\n", moduleTitle.latin1() ); --- diff --git a/src/LightApp/LightApp_Application.cxx b/src/LightApp/LightApp_Application.cxx index ed241088e..a92d45bd4 100644 --- a/src/LightApp/LightApp_Application.cxx +++ b/src/LightApp/LightApp_Application.cxx @@ -2449,8 +2449,8 @@ bool LightApp_Application::isLibExists( const QString& moduleTitle ) const if ( !isLibFound ) { printf( "****************************************************************\n" ); - printf( "* Warning: library %s cannot be found\n", moduleTitle.latin1() ); - printf( "* Module will not be available\n" ); + printf( "* Warning: library %s cannot be found\n", lib.latin1() ); + printf( "* Module %s will not be available in GUI mode\n", moduleTitle.latin1() ); printf( "****************************************************************\n" ); } else if ( !isPythonModule )