]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Spell-checking
authorspo <sergey.pokhodenko@opencascade.com>
Wed, 23 Dec 2015 11:36:58 +0000 (14:36 +0300)
committerspo <sergey.pokhodenko@opencascade.com>
Thu, 24 Dec 2015 10:18:37 +0000 (13:18 +0300)
src/Model/Model_AttributeInteger.h
src/ModelAPI/ModelAPI_AttributeInteger.h
src/ModuleBase/ModuleBase_ParamSpinBox.cpp
src/ModuleBase/ModuleBase_ParamSpinBox.h
src/ModuleBase/ModuleBase_WidgetIntValue.h

index a723227bc550c7efc77309ff766e984650801491..88b50a504af77c2d3ec7c202296fed2f9860af7d 100644 (file)
@@ -29,7 +29,7 @@ class Model_AttributeInteger : public ModelAPI_AttributeInteger
   MODEL_EXPORT virtual int value();
 
  protected:
-  /// Initializes attibutes
+  /// Initializes attributes
   Model_AttributeInteger(TDF_Label& theLabel);
 
   friend class Model_Data;
index e683166d32179ffcc6c9a92b63a2c576d8fe985e..d16924a98feb67e4822e11f6eb8859d3f13b8241 100644 (file)
@@ -24,7 +24,7 @@ class ModelAPI_AttributeInteger : public ModelAPI_Attribute
   /// Defines the integer value
   MODELAPI_EXPORT virtual void setValue(const int theValue) = 0;
 
-  /// Returns the inhteger value
+  /// Returns the integer value
   MODELAPI_EXPORT virtual int value() = 0;
 
   /// Returns the type of this class of attributes
index 17b9307ca014ab936354b3cf1f4f0464c3cdff34..40b50fb1757ff1dca0a7f0dbbe0a3b3f88689685 100644 (file)
@@ -219,7 +219,7 @@ bool ModuleBase_ParamSpinBox::findVariable(const QString& theName,
 }
 
 /*!
- \brief This function is called when the spinbox recieves key press event.
+ \brief This function is called when the spinbox receives key press event.
  */
 //void ModuleBase_ParamSpinBox::keyPressEvent(QKeyEvent* e)
 //{
@@ -231,7 +231,7 @@ bool ModuleBase_ParamSpinBox::findVariable(const QString& theName,
 //}
 
 /*!
- \brief This function is called when the spinbox recieves show event.
+ \brief This function is called when the spinbox receives show event.
  */
 void ModuleBase_ParamSpinBox::showEvent(QShowEvent* theEvent)
 {
index f771b5656fa046ff128a3b8efa2db23757151f6d..591d0cfd970658fa981a8ffc0f6a47ad69d3c117 100644 (file)
@@ -63,9 +63,9 @@ public:
   /// Returns True if the given value is within min and max of the control
   bool checkRange(const double) const;
 
-  /// Finds a variable by its name. Rreturns true in success
+  /// Finds a variable by its name. Returns true in success
   /// \param theName a name of variable
-  /// \param outValue an output val;ue of the variable
+  /// \param outValue an output value of the variable
   bool findVariable(const QString& theName, double& outValue) const;
 
  protected:
index ffc52d9f97271631e8f054b6860a69cc1f292c12..3eaf0e52bf22c37c34645abbb6b61f85c4806b12 100644 (file)
@@ -18,10 +18,10 @@ class QTimer;
 
 /**
 * \ingroup GUI
-* A class of property panel widget for double value input
-* It can be defined with "doublevalue" keyword. For example:
+* A class of property panel widget for integer value input
+* It can be defined with "integervalue" keyword. For example:
 * \code
-* <doublevalue id="x" label="X:" icon=":pictures/x_point.png" tooltip="X coordinate"/>
+* <integervalue id="x" label="X:" icon=":pictures/x_point.png" tooltip="X coordinate"/>
 * \endcode
 */
 class MODULEBASE_EXPORT ModuleBase_WidgetIntValue : public ModuleBase_ModelWidget
@@ -30,7 +30,7 @@ Q_OBJECT
  public:
   /// Constructor
   /// \param theParent the parent object
-  /// \param theData the widget configuation. The attribute of the model widget is obtained from
+  /// \param theData the widget configuration. The attribute of the model widget is obtained from
   /// \param theParentId is Id of a parent structure (widget, operation, group)
   ModuleBase_WidgetIntValue(QWidget* theParent, const Config_WidgetAPI* theData,
                                const std::string& theParentId);