From: rnv Date: Fri, 17 Apr 2009 11:04:06 +0000 (+0000) Subject: Implementation of the issue 0020151 (SALOME: Light Python module): X-Git-Tag: V5_1_main_20090514~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=6b7981aaa938fee8c004cf728c29dd5766ca9455;p=modules%2Fvisu.git 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. --- diff --git a/src/VISUGUI/VisuGUI.cxx b/src/VISUGUI/VisuGUI.cxx index 76136ddc..6334fd81 100644 --- a/src/VISUGUI/VisuGUI.cxx +++ b/src/VISUGUI/VisuGUI.cxx @@ -182,6 +182,7 @@ static int MYDEBUG = 0; VisuGUI ::VisuGUI(): SalomeApp_Module( "VISU" ), + LightApp_Module("VISU"), myDisplayer( 0 ), mySlider( NULL ), mySweep( NULL ) diff --git a/src/VISUGUI/VisuGUI_Module.cxx b/src/VISUGUI/VisuGUI_Module.cxx index 31869571..09012bcb 100644 --- a/src/VISUGUI/VisuGUI_Module.cxx +++ b/src/VISUGUI/VisuGUI_Module.cxx @@ -182,7 +182,8 @@ namespace VISU //--------------------------------------------------------------- VisuGUI_Module::VisuGUI_Module() : - VisuGUI() + VisuGUI(), + LightApp_Module("VISU") { }