From 1e87150ff01fce39ecfe06be34202a23cedcda71 Mon Sep 17 00:00:00 2001 From: eap Date: Wed, 8 Aug 2007 09:13:14 +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 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 ) -- 2.39.2