From 146c0b3d6a7d184bad241d696dd0290917faa8a5 Mon Sep 17 00:00:00 2001 From: rnv Date: Fri, 17 Apr 2009 10:57:52 +0000 Subject: [PATCH] Implementation of the issue 0020151 (SALOME: Light Python module): Call LightApp_Module::LightApp_Module() constructor, because virtual inheritance between LightApp_Module and SalomeApp_Module classes was added. --- src/GEOMGUI/GeometryGUI.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/GEOMGUI/GeometryGUI.cxx b/src/GEOMGUI/GeometryGUI.cxx index 54722fe93..37b3c8b49 100644 --- a/src/GEOMGUI/GeometryGUI.cxx +++ b/src/GEOMGUI/GeometryGUI.cxx @@ -162,7 +162,8 @@ char* GeometryGUI::JoinObjectParameters(const QStringList& theParametersList) // purpose : Constructor //======================================================================= GeometryGUI::GeometryGUI() : - SalomeApp_Module( "GEOM" ) + SalomeApp_Module( "GEOM" ), + LightApp_Module( "GEOM" ) { if ( CORBA::is_nil( myComponentGeom ) ) { -- 2.30.2