Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Oct 15, 2018
1 parent cea155f commit f07462b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 24 deletions.
20 changes: 8 additions & 12 deletions python/core/auto_generated/symbology/qgsfillsymbollayer.sip.in
Expand Up @@ -702,8 +702,6 @@ Sets the stroke width map unit ``scale``.

.. seealso:: :py:func:`strokeWidthMapUnitScale`

.. seealso:: :py:func:`setStrokeWidth`

.. seealso:: :py:func:`setStrokeWidthUnit`
%End

Expand All @@ -713,8 +711,6 @@ Returns the stroke width map unit scale.

.. seealso:: :py:func:`setStrokeWidthMapUnitScale`

.. seealso:: :py:func:`strokeWidth`

.. seealso:: :py:func:`strokeWidthUnit`

.. versionadded:: 2.16
Expand Down Expand Up @@ -1135,8 +1131,8 @@ Units are retrieved by patternWidthUnit()
%Docstring
Sets the fill color used for rendering the SVG content.

Fill color is only supported for parameterized SVG files. Color opacity is
ignored if the SVG file does not support parameterized fill opacity.
Fill color is only supported for parametrized SVG files. Color opacity is
ignored if the SVG file does not support parametrized fill opacity.

.. seealso:: :py:func:`svgFillColor`

Expand All @@ -1147,7 +1143,7 @@ ignored if the SVG file does not support parameterized fill opacity.
%Docstring
Returns the fill color used for rendering the SVG content.

Fill color is only supported for parameterized SVG files.
Fill color is only supported for parametrized SVG files.

.. seealso:: :py:func:`setSvgFillColor`

Expand All @@ -1158,8 +1154,8 @@ Fill color is only supported for parameterized SVG files.
%Docstring
Sets the stroke color used for rendering the SVG content.

Stroke color is only supported for parameterized SVG files. Color opacity is
ignored if the SVG file does not support parameterized outline opacity.
Stroke color is only supported for parametrized SVG files. Color opacity is
ignored if the SVG file does not support parametrized outline opacity.

.. seealso:: :py:func:`svgStrokeColor`

Expand All @@ -1170,7 +1166,7 @@ ignored if the SVG file does not support parameterized outline opacity.
%Docstring
Returns the stroke color used for rendering the SVG content.

Stroke color is only supported for parameterized SVG files.
Stroke color is only supported for parametrized SVG files.

.. seealso:: :py:func:`setSvgStrokeColor`

Expand All @@ -1181,7 +1177,7 @@ Stroke color is only supported for parameterized SVG files.
%Docstring
Sets the stroke width used for rendering the SVG content.

Stroke width is only supported for parameterized SVG files. Units are
Stroke width is only supported for parametrized SVG files. Units are
specified via setSvgStrokeWidthUnit()

.. seealso:: :py:func:`svgStrokeWidth`
Expand All @@ -1195,7 +1191,7 @@ specified via setSvgStrokeWidthUnit()
%Docstring
Returns the stroke width used for rendering the SVG content.

Stroke width is only supported for parameterized SVG files. Units are
Stroke width is only supported for parametrized SVG files. Units are
retrieved via setSvgStrokeWidthUnit()

.. seealso:: :py:func:`setSvgStrokeWidth`
Expand Down
22 changes: 10 additions & 12 deletions src/core/symbology/qgsfillsymbollayer.h
Expand Up @@ -654,7 +654,6 @@ class CORE_EXPORT QgsImageFillSymbolLayer: public QgsFillSymbolLayer
* Sets the stroke width map unit \a scale.
*
* \see strokeWidthMapUnitScale()
* \see setStrokeWidth()
* \see setStrokeWidthUnit()
*/
void setStrokeWidthMapUnitScale( const QgsMapUnitScale &scale ) { mStrokeWidthMapUnitScale = scale; }
Expand All @@ -663,7 +662,6 @@ class CORE_EXPORT QgsImageFillSymbolLayer: public QgsFillSymbolLayer
* Returns the stroke width map unit scale.
*
* \see setStrokeWidthMapUnitScale()
* \see strokeWidth()
* \see strokeWidthUnit()
*
* \since QGIS 2.16
Expand Down Expand Up @@ -999,7 +997,7 @@ class CORE_EXPORT QgsSVGFillSymbolLayer: public QgsImageFillSymbolLayer
*
* \see patternWidth()
* \see setPatternWidthUnit()
* \see setPatternWidthMapUnitScale(*)
* \see setPatternWidthMapUnitScale()
*/
void setPatternWidth( double width ) { mPatternWidth = width;}

Expand All @@ -1010,15 +1008,15 @@ class CORE_EXPORT QgsSVGFillSymbolLayer: public QgsImageFillSymbolLayer
*
* \see setPatternWidth()
* \see patternWidthUnit()
* \see patternWidthMapUnitScale(*)
* \see patternWidthMapUnitScale()
*/
double patternWidth() const { return mPatternWidth; }

/**
* Sets the fill color used for rendering the SVG content.
*
* Fill color is only supported for parameterized SVG files. Color opacity is
* ignored if the SVG file does not support parameterized fill opacity.
* Fill color is only supported for parametrized SVG files. Color opacity is
* ignored if the SVG file does not support parametrized fill opacity.
*
* \see svgFillColor()
* \see setSvgStrokeColor()
Expand All @@ -1028,7 +1026,7 @@ class CORE_EXPORT QgsSVGFillSymbolLayer: public QgsImageFillSymbolLayer
/**
* Returns the fill color used for rendering the SVG content.
*
* Fill color is only supported for parameterized SVG files.
* Fill color is only supported for parametrized SVG files.
*
* \see setSvgFillColor()
* \see svgStrokeColor()
Expand All @@ -1038,8 +1036,8 @@ class CORE_EXPORT QgsSVGFillSymbolLayer: public QgsImageFillSymbolLayer
/**
* Sets the stroke color used for rendering the SVG content.
*
* Stroke color is only supported for parameterized SVG files. Color opacity is
* ignored if the SVG file does not support parameterized outline opacity.
* Stroke color is only supported for parametrized SVG files. Color opacity is
* ignored if the SVG file does not support parametrized outline opacity.
*
* \see svgStrokeColor()
* \see setSvgFillColor()
Expand All @@ -1049,7 +1047,7 @@ class CORE_EXPORT QgsSVGFillSymbolLayer: public QgsImageFillSymbolLayer
/**
* Returns the stroke color used for rendering the SVG content.
*
* Stroke color is only supported for parameterized SVG files.
* Stroke color is only supported for parametrized SVG files.
*
* \see setSvgStrokeColor()
* \see svgFillColor()
Expand All @@ -1059,7 +1057,7 @@ class CORE_EXPORT QgsSVGFillSymbolLayer: public QgsImageFillSymbolLayer
/**
* Sets the stroke width used for rendering the SVG content.
*
* Stroke width is only supported for parameterized SVG files. Units are
* Stroke width is only supported for parametrized SVG files. Units are
* specified via setSvgStrokeWidthUnit()
*
* \see svgStrokeWidth()
Expand All @@ -1071,7 +1069,7 @@ class CORE_EXPORT QgsSVGFillSymbolLayer: public QgsImageFillSymbolLayer
/**
* Returns the stroke width used for rendering the SVG content.
*
* Stroke width is only supported for parameterized SVG files. Units are
* Stroke width is only supported for parametrized SVG files. Units are
* retrieved via setSvgStrokeWidthUnit()
*
* \see setSvgStrokeWidth()
Expand Down

0 comments on commit f07462b

Please sign in to comment.