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.
This commit is contained in:
rnv 2009-04-17 11:03:03 +00:00
parent 4efe224f00
commit 0f1fe5b1e3

View File

@ -1063,7 +1063,8 @@ SMESH::SMESH_Gen_var SMESHGUI::myComponentSMESH = SMESH::SMESH_Gen::_nil();
*/
//=============================================================================
SMESHGUI::SMESHGUI() :
SalomeApp_Module( "SMESH" )
SalomeApp_Module( "SMESH" ),
LightApp_Module( "SMESH" )
{
if ( CORBA::is_nil( myComponentSMESH ) )
{