]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Spell-checking
authorspo <sergey.pokhodenko@opencascade.com>
Wed, 25 Nov 2015 08:11:45 +0000 (11:11 +0300)
committerspo <sergey.pokhodenko@opencascade.com>
Mon, 20 Jun 2016 12:07:37 +0000 (15:07 +0300)
src/ConnectorPlugin/ConnectorPlugin_ExportFeature.py
src/Events/Events_Loop.h
src/FeaturesPlugin/FeaturesPlugin_Placement.h
src/GeomAPI/GeomAPI_Shape.h
src/GeomAlgoAPI/GeomAlgoAPI_CompoundBuilder.h
src/Model/Model_AttributeSelection.cpp
src/Model/Model_AttributeSelection.h
src/Model/Model_AttributeSelectionList.h
src/Model/Model_Data.cpp
src/Model/Model_Document.cpp
src/ModelAPI/ModelAPI_AttributeSelection.h

index 1e8f814882788a28a2f3f7ef468c4a9c1525eb61..e2fcc921bbbbac1e45dbd23eaa970326cd7aa81d 100644 (file)
@@ -41,7 +41,7 @@ class ExportFeature(ModelAPI.ModelAPI_Feature):
     def getKind(self):
         return ExportFeature.ID()
 
-    ## This feature is action: has no property pannel and executes immideately.
+    ## This feature is action: has no property pannel and executes immediately.
     def isAction(self):
         return True
 
index c1c5f2977a0c08edb95c5ca28da2411d2172a23d..f5d092551f7c0f9cfccc54f65edb6a1e8c56cae8 100644 (file)
@@ -24,7 +24,7 @@ class Events_MessageGroup;
  * One per application, initialized on start. Listeners must register in this loop
  * to get events, called by senders. Sending of events is very fast (just adding to container).
  * Performing of events is processed in separated thread, so, sender takes 
- * control back immideately.
+ * control back immediately.
  */
 class Events_Loop
 {
index 498a771b22b3e339277fc6fd1458308cf7303175..895403775c5d4f4ad62a0f79fb6591a1070d6c11 100644 (file)
@@ -21,7 +21,7 @@ class GeomAPI_Shape;
  *
  * Locates the selected placement_attractable_object (face, edge, vertex) of the solid into 
  * the selected placement_base_object. Faces must be planar, edges must be linear.
- * Orientation of the placed solid depends on the underlied planes of both faces.
+ * Orientation of the placed solid depends on the underlying planes of both faces.
  */
 class FeaturesPlugin_Placement : public ModelAPI_Feature
 {
index 9d2b8b278292dbfd435b1528846960c6f0d8b926..b2018a7da100e1de172e059b08f551cff7284b1f 100644 (file)
@@ -42,7 +42,7 @@ public:
   ///         geometry and no sub-shapes.
   GEOMAPI_EXPORT std::shared_ptr<GeomAPI_Shape> emptyCopied() const;
 
-  /// Returns true if the underlied shape is null
+  /// Returns true if the underlying shape is null
   GEOMAPI_EXPORT 
   bool isNull() const;
 
index 36caf87794da032c67ffc031e8565bc367081ac1..89c673dc4d8ef836fd95d848d7c7f0e569ebae58 100644 (file)
@@ -23,7 +23,7 @@
 class GEOMALGOAPI_EXPORT GeomAlgoAPI_CompoundBuilder
 {
  public:
-  /// Creates compund of the given shapes
+  /// Creates compound of the given shapes
   /// \param theShapes a list of shapes
   static std::shared_ptr<GeomAPI_Shape> compound(
       std::list<std::shared_ptr<GeomAPI_Shape> > theShapes);
index c672ed47effb8b8299b90ef0563f4d561777d219..bf9e187ccdfbfbf1aaec336eb9473c10df6023a3 100644 (file)
@@ -61,7 +61,7 @@ using namespace std;
 #ifdef DEB_NAMING
 #include <BRepTools.hxx>
 #endif
-/// added to the index in the packed map to signalize that the vertex of edge is selected
+/// Added to the index in the packed map to signalize that the vertex of edge is selected
 /// (multiplied by the index of the edge)
 static const int kSTART_VERTEX_DELTA = 1000000;
 // identifier that there is simple reference: selection equals to context
@@ -305,7 +305,7 @@ ResultPtr Model_AttributeSelection::context() {
       if (aPart.get() && aPart->data() == aResult->data()) {
         ResultPtr aPartResult = std::dynamic_pointer_cast<ModelAPI_Result>(aPart);
         FeaturePtr anOwnerFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(owner());
-        // check that this result is not this-feature result (it is forbidden t oselect itself)
+        // check that this result is not this-feature result (it is forbidden tselect itself)
         if (anOwnerFeature.get() && anOwnerFeature->firstResult() != aPartResult) {
           return aPartResult;
         }
@@ -340,7 +340,7 @@ TDF_LabelMap& Model_AttributeSelection::scope()
          aCompositeOwnerOwner = ModelAPI_Tools::compositeOwner(aCompositeOwner);
       }
     }
-    // for group Scope is not limitet: this is always up to date objects
+    // for group Scope is not limited: this is always up to date objects
     bool isGroup = aFeature.get() && aFeature->getKind() == "Group";
     for(; aFIter != allFeatures.end(); aFIter++) {
       if (*aFIter == owner()) {  // the left features are created later (except subs of composite)
@@ -539,7 +539,7 @@ bool Model_AttributeSelection::update()
                 if (allCurves.IsBound(aCurve)) {
                   aFound++;
                   int anOrient = allCurves.Find(aCurve);
-                  if (anOrient != 0) {  // extra comparision score is orientation
+                  if (anOrient != 0) {  // extra comparison score is orientation
                     if (edgeOrientation(aFace, anEdge) == anOrient)
                       aSameOrientation++;
                   }
index 5c7d3c358a0494fefab375d32faa667e71178dce..4908b5fe03486822349f6c7c636b5885cf1c51b1 100644 (file)
@@ -30,7 +30,7 @@ public:
   /// \param theContext object where the sub-shape was selected
   /// \param theSubShape selected sub-shape (if null, the whole context is selected)
   /// \param theTemporarily if it is true, do not store and name the added in the data framework
-  ///           (used to remove immideately, without the following updates)
+  ///           (used to remove immediately, without the following updates)
   MODEL_EXPORT virtual void setValue(
     const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape,
     const bool theTemporarily = false);
@@ -44,27 +44,27 @@ public:
   /// Sets the feature object
   MODEL_EXPORT virtual void setObject(const std::shared_ptr<ModelAPI_Object>& theObject);
 
-  /// Updates the underlied selection due to the changes in the referenced objects
+  /// Updates the underlying selection due to the changes in the referenced objects
   /// \returns false if update is failed
   MODEL_EXPORT virtual bool update();
 
   /// Returns a textual string of the selection
   /// \param theDefaultValue a name, which is returned if the naming name can not be obtained
   MODEL_EXPORT virtual std::string namingName(const std::string& theDefaultValue = "");
-  
+
   /// Returns an Id of the selection
   /// NOTE: This method has been added for temporary export of groups towards old GEOM
   /// It should then be removed when a direct use of objects from SHAPER
   /// will be possible from SMESH module of SALOME.
   MODEL_EXPORT virtual int Id();
 
-  /// Selects (i.e. creates Naming data structure) of sub-shape specifed by textual name
+  /// Selects (i.e. creates Naming data structure) of sub-shape specified by textual name
   MODEL_EXPORT virtual void selectSubShape(const std::string& theType, const std::string& theSubShapeName);
 
   /// Returns true if attribute was  initialized by some value
   MODEL_EXPORT virtual bool isInitialized();
 
-  /// Returns true if recomute of selection become impossible
+  /// Returns true if recompute of selection become impossible
   MODEL_EXPORT virtual bool isInvalid();
 
 
@@ -85,7 +85,7 @@ protected:
   /// \param theContext the result - owner of the selection
   /// \param theSubShape selected shape
   /// \param theUpdate flag that shows that it must be just update, theShape is null
-  /// \returns true if eveything is selected correctly
+  /// \returns true if everything is selected correctly
   virtual bool selectPart(
     const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape,
     const bool theUpdate = false);
index 3c6317d5ab4a06ccf685254c941e1e29b5f25657..ac7af66457a7425bd9debe90341a4a8d93e6ea28 100644 (file)
@@ -35,7 +35,7 @@ public:
   /// \param theContext object where the sub-shape was selected
   /// \param theSubShape selected sub-shape (if null, the whole context is selected)
   /// \param theTemporarily if it is true, do not store and name the added in the data framework
-  ///           (used to remove immideately, without the following updates)
+  ///           (used to remove immediately, without the following updates)
   MODEL_EXPORT virtual void append(
     const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape,
     const bool theTemporarily = false);
@@ -51,7 +51,7 @@ public:
   /// \param theIndices a list of indices of elements to be removed
   MODEL_EXPORT virtual void remove(const std::set<int>& theIndices);
 
-  /// Returns the number ofselection attributes in the list
+  /// Returns the number of selection attributes in the list
   MODEL_EXPORT virtual int size();
 
   /// Returns true if the object with the shape are in list
index 402dbd67982d5353a6d92e69e8175e62bf15cdd1..ca24a8c8587b75924cb1db082001b73d2abe9eb9 100644 (file)
@@ -428,7 +428,7 @@ void Model_Data::removeBackReference(AttributePtr theAttr)
 
   myRefsToMe.erase(theAttr);
 
-  // remove concealment immideately: on deselection it must be posible to reselect in GUI the same
+  // remove concealment immediately: on deselection it must be posible to reselect in GUI the same
   FeaturePtr aFeatureOwner = std::dynamic_pointer_cast<ModelAPI_Feature>(theAttr->owner());
   if (aFeatureOwner.get() &&
     ModelAPI_Session::get()->validators()->isConcealed(aFeatureOwner->getKind(), theAttr->id())) {
index ebc4de9d8871ea39ed8d1e4d6e4a0bf84057ee93..7bb91db08ff4a82fa5483185769e95e33990b26e 100755 (executable)
@@ -1032,7 +1032,7 @@ void Model_Document::setCurrentFeature(
       ModelAPI_EventCreator::get()->sendUpdated(anIter, aRedispEvent /*, false*/);
       aWasChanged = true;
     }
-    // update for everyone the concealment flag immideately: on edit feature in the midle of history
+    // update for everyone the concealment flag immediately: on edit feature in the midle of history
     if (aWasChanged) {
       std::list<ResultPtr> aResults;
       ModelAPI_Tools::allResults(anIter, aResults);
index 896b007591d3ba757e3072008f15f669c067d12b..1af82645e959bfe00e083659b0dc53b507361b0d 100644 (file)
@@ -22,7 +22,7 @@ class ModelAPI_AttributeSelection : public ModelAPI_Attribute
   /// \param theContext object where the sub-shape was selected
   /// \param theSubShape selected sub-shape (if null, the whole context is selected)
   /// \param theTemporarily if it is true, do not store and name the added in the data framework
-  ///           (used to remove immideately, without the following updates)
+  ///           (used to remove immediately, without the following updates)
   virtual void setValue(
     const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape,
     const bool theTemporarily = false) = 0;
@@ -33,7 +33,7 @@ class ModelAPI_AttributeSelection : public ModelAPI_Attribute
   /// Returns the context of the selection (the whole shape owner)
   virtual ResultPtr context() = 0;
 
-  /// Updates the underlied selection due to the changes in the referenced objects
+  /// Updates the underlying selection due to the changes in the referenced objects
   /// \returns false if update is failed
   virtual bool update() = 0;