]> SALOME platform Git repositories - modules/hydro.git/commitdiff
Salome HOME
Method name corrected.
authoradv <adv@opencascade.com>
Thu, 19 Dec 2013 05:28:46 +0000 (05:28 +0000)
committeradv <adv@opencascade.com>
Thu, 19 Dec 2013 05:28:46 +0000 (05:28 +0000)
src/HYDROData/HYDROData_CalculationCase.cxx
src/HYDROData/HYDROData_ShapesGroup.cxx
src/HYDROData/HYDROData_ShapesGroup.h

index 78e406532721aa2158837e3b9a7538f251069c88..d40387eee159af849077abd59f4ff15e3d5ee2ec 100644 (file)
@@ -737,7 +737,7 @@ bool HYDROData_CalculationCase::Export( GEOM::GEOM_Gen_var theGeomEngine,
 
     // Get shapes of the group
     TopTools_SequenceOfShape aShapes;
-    aGroup->GeShapes( aShapes );
+    aGroup->GetShapes( aShapes );
     for( int i = 1, aNbShapes = aShapes.Length(); i <= aNbShapes; i++ ) {
       const TopoDS_Shape& aShape = aShapes.Value( i );
       const TopoDS_Shape ModifiedShape = aSewing.Modified( aShape );
index 1ef3ad95827d648bc1bf1ca556e9d0ffacf15923..7942fdf0792b6c2cd4e19c691777f3fb03c81658 100644 (file)
@@ -53,7 +53,7 @@ void HYDROData_ShapesGroup::SetShapes( const TopTools_SequenceOfShape& theShapes
   }
 }
 
-void HYDROData_ShapesGroup::GeShapes( TopTools_SequenceOfShape& theShapes ) const
+void HYDROData_ShapesGroup::GetShapes( TopTools_SequenceOfShape& theShapes ) const
 {
   theShapes.Clear();
 
index 1bf553234cd615f845e558b1add736d4f74f8d10..e7e86265322d5f29b7257dded30ba974f333528e 100644 (file)
@@ -59,7 +59,7 @@ public:
   /**
    * Returns all edges of the group.
    */
-  HYDRODATA_EXPORT virtual void GeShapes( TopTools_SequenceOfShape& theShapes ) const;
+  HYDRODATA_EXPORT virtual void GetShapes( TopTools_SequenceOfShape& theShapes ) const;
 
   /**
    * Removes all edges from the group.