]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
IPAL12252.
authormzn <mzn@opencascade.com>
Wed, 3 May 2006 16:31:57 +0000 (16:31 +0000)
committermzn <mzn@opencascade.com>
Wed, 3 May 2006 16:31:57 +0000 (16:31 +0000)
src/EntityGUI/EntityGUI.cxx
src/EntityGUI/EntityGUI.h

index f3e695e6d221bb618fac21571853f93cec84e3c8..12ae4e2ef9950ea9489db98f59905d78310e7ea2 100644 (file)
 using namespace boost;
 using namespace std;
 
-EntityGUI* EntityGUI::myGUIObject = 0;
-
 //=======================================================================
 // function : GetEntityGUI()
 // purpose  : Get the only EntityGUI object [ static ]
 //=======================================================================
 EntityGUI* EntityGUI::GetEntityGUI( GeometryGUI* parent )
 {
-  if ( myGUIObject == 0 ) {
-    // init EntityGUI only once
-    myGUIObject = new EntityGUI( parent );
-  }
-  return myGUIObject;
+  return new EntityGUI( parent );
 }
 
 //=======================================================================
index be82e32fc184d67c35e8e4f281d7eff19e839d52..7441021ab1438a1431393606cb37c259f5ac66c9 100644 (file)
@@ -61,9 +61,6 @@ public :
   // AIS shape used only during topo/geom simulations
   Handle(AIS_Shape) mySimulationShape1;
   Handle(AIS_Shape) mySimulationShape2;
-
-private:
-  static EntityGUI* myGUIObject; //!< the only EntityGUI object
 };
 
 #endif