From dafc7703cf8f8742702a1912a9c3c3f62ad8487f Mon Sep 17 00:00:00 2001 From: vsr Date: Mon, 18 Feb 2013 12:57:03 +0000 Subject: [PATCH] Fix bug: Python GUI library in not found on Windows --- src/LightApp/LightApp_Application.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LightApp/LightApp_Application.cxx b/src/LightApp/LightApp_Application.cxx index 0c11ef825..2ac1e8128 100644 --- a/src/LightApp/LightApp_Application.cxx +++ b/src/LightApp/LightApp_Application.cxx @@ -3570,7 +3570,7 @@ bool LightApp_Application::isLibExists( const QString& moduleTitle ) const //abd: changed libSalomePyQtGUI to SalomePyQtGUI for WIN32 bool isPythonModule = lib.contains("SalomePyQtGUI"); - bool isPythonLightModule = lib.contains("libSalomePyQtGUILight"); + bool isPythonLightModule = lib.contains("SalomePyQtGUILight"); QStringList paths; #ifdef WIN32 -- 2.39.2