From: eap Date: Wed, 8 Aug 2007 09:13:14 +0000 (+0000) Subject: PAL16537 (wrong warning message) X-Git-Tag: T32x_16Aug2007_16h00m~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=1e87150ff01fce39ecfe06be34202a23cedcda71;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 db0e8c70c..fd1f8977b 100644 --- a/src/LightApp/LightApp_Application.cxx +++ b/src/LightApp/LightApp_Application.cxx @@ -2374,8 +2374,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 )