From 178f06e6124b65c0482b5e45d678e58e52ea632b Mon Sep 17 00:00:00 2001 From: eap Date: Wed, 8 Aug 2007 09:12:36 +0000 Subject: [PATCH] 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() ); --- src/LightApp/LightApp_Application.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ) -- 2.39.2