Salome HOME
Implementation of the issue 0020151 (SALOME: Light Python module):
authorrnv <rnv@opencascade.com>
Fri, 17 Apr 2009 11:04:06 +0000 (11:04 +0000)
committerrnv <rnv@opencascade.com>
Fri, 17 Apr 2009 11:04:06 +0000 (11:04 +0000)
Call LightApp_Module::LightApp_Module() constructor, because virtual inheritance between LightApp_Module and SalomeApp_Module classes was added.

src/VISUGUI/VisuGUI.cxx
src/VISUGUI/VisuGUI_Module.cxx

index 76136ddc23101e96608d1ad218190fb5296d2d84..6334fd811d307268c98047f56b6694dceb0eb470 100644 (file)
@@ -182,6 +182,7 @@ static int MYDEBUG = 0;
 VisuGUI
 ::VisuGUI():
   SalomeApp_Module( "VISU" ),
+  LightApp_Module("VISU"),
   myDisplayer( 0 ),
   mySlider( NULL ),
   mySweep( NULL )
index 31869571c0c57e56f7991f5b6a1c6cf0ca8c71ff..09012bcbc884110543e34118de794dfd9b9e4f0a 100644 (file)
@@ -182,7 +182,8 @@ namespace VISU
 
 //---------------------------------------------------------------
 VisuGUI_Module::VisuGUI_Module() : 
-  VisuGUI()
+  VisuGUI(),
+  LightApp_Module("VISU")
 {
 }