]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Spell-checking
authorspo <sergey.pokhodenko@opencascade.com>
Mon, 26 Oct 2015 07:00:37 +0000 (10:00 +0300)
committerspo <sergey.pokhodenko@opencascade.com>
Mon, 26 Oct 2015 07:00:37 +0000 (10:00 +0300)
src/FeaturesPlugin/FeaturesPlugin_CompositeSketch.h
src/Model/Model_AttributeRefAttr.h
src/ModelAPI/ModelAPI_AttributeSelectionList.h
src/ModelAPI/ModelAPI_Document.h
src/ModelAPI/ModelAPI_Feature.h

index 806a004cd1770ce2467f592860615a93c939f1b1..1ad620eb49a6b320c08ef16935ed813d02110150 100644 (file)
@@ -52,7 +52,7 @@ class FeaturesPlugin_CompositeSketch : public ModelAPI_CompositeFeature
   /// \return the sub-feature unique identifier in this composite feature by zero-base index.
   FEATURESPLUGIN_EXPORT virtual int subFeatureId(const int theIndex) const;
 
-  /// \return true if feature or reuslt belong to this composite feature as subs.
+  /// \return true if feature or result belong to this composite feature as subs.
   FEATURESPLUGIN_EXPORT virtual bool isSub(ObjectPtr theObject) const;
 
   /// This method to inform that sub-feature is removed and must be removed from the internal data
index 49337e695a9e7ebae3b79a944271b6a3d2b72f52..40e3e0ecbec066380b0252fb7a6c89088558037a 100644 (file)
@@ -22,7 +22,7 @@
 class Model_AttributeRefAttr : public ModelAPI_AttributeRefAttr
 {
   Handle_TDF_Reference myRef;  ///< reference to the feature label
-  ///< ID of the referenced attirbute (empty if this is a reference to a feature)
+  ///< ID of the referenced attribute (empty if this is a reference to a feature)
   Handle_TDataStd_Comment myID;
  public:
   /// Returns true if this attribute references to a object (not to the attribute)
index b12aa518d54daaf898b7b79168e76be2016304b2..c94062ba3e29ac664e929ac51a97355a25d40b52 100644 (file)
@@ -23,7 +23,7 @@ class ModelAPI_AttributeSelectionList : 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 append(const ResultPtr& theContext,
                       const GeomShapePtr& theSubShape,
                       const bool theTemporarily = false) = 0;
index b6419ec8266442d75d3c2caeaababc29b1191a9b..a56fd64bf35e26934296f056872095335dca0522 100644 (file)
@@ -123,7 +123,7 @@ public:
   //! To virtually destroy the fields of successors
   MODELAPI_EXPORT virtual ~ModelAPI_Document();
 
-  //! Creates a construction cresult
+  //! Creates a construction result
   virtual std::shared_ptr<ModelAPI_ResultConstruction> createConstruction(
       const std::shared_ptr<ModelAPI_Data>& theFeatureData, const int theIndex = 0) = 0;
   //! Creates a body result
index 2508e6a2ea9f726e3d789a208c2d4e5b15c257e6..6cc9c8b50a5561ad1f0dbea3adb6648bb2fb22a0 100644 (file)
@@ -82,7 +82,7 @@ class ModelAPI_Feature : public ModelAPI_Object
                                  const int theIndex);
   /// removes the result from the feature
   MODELAPI_EXPORT void removeResult(const std::shared_ptr<ModelAPI_Result>& theResult);
-  /// removes all results starting from the gived index (zero-based)
+  /// removes all results starting from the given index (zero-based)
   /// \param theSinceIndex - index of the deleted result and all after also will be deleted
   /// \param theFlush - if it is false, REDISPLAY message is not flushed
   MODELAPI_EXPORT void removeResults(const int theSinceIndex, const bool theFlush = true);