Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Nov 16, 2020
1 parent a1c4d0e commit 28c2788
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
Expand Up @@ -126,7 +126,7 @@ Sets the ``attribute`` to use for the blue channel.

const QgsContrastEnhancement *redContrastEnhancement() const;
%Docstring
Returns the contrast enchancement to use for the red channel.
Returns the contrast enhancement to use for the red channel.

.. seealso:: :py:func:`setRedContrastEnhancement`

Expand All @@ -137,7 +137,7 @@ Returns the contrast enchancement to use for the red channel.

void setRedContrastEnhancement( QgsContrastEnhancement *enhancement /Transfer/ );
%Docstring
Sets the contrast ``enchancement`` to use for the red channel.
Sets the contrast ``enhancement`` to use for the red channel.

Ownership of ``enhancement`` is transferred.

Expand All @@ -150,7 +150,7 @@ Ownership of ``enhancement`` is transferred.

const QgsContrastEnhancement *greenContrastEnhancement() const;
%Docstring
Returns the contrast enchancement to use for the green channel.
Returns the contrast enhancement to use for the green channel.

.. seealso:: :py:func:`setGreenContrastEnhancement`

Expand All @@ -161,7 +161,7 @@ Returns the contrast enchancement to use for the green channel.

void setGreenContrastEnhancement( QgsContrastEnhancement *enhancement /Transfer/ );
%Docstring
Sets the contrast ``enchancement`` to use for the green channel.
Sets the contrast ``enhancement`` to use for the green channel.

Ownership of ``enhancement`` is transferred.

Expand All @@ -174,7 +174,7 @@ Ownership of ``enhancement`` is transferred.

const QgsContrastEnhancement *blueContrastEnhancement() const;
%Docstring
Returns the contrast enchancement to use for the blue channel.
Returns the contrast enhancement to use for the blue channel.

.. seealso:: :py:func:`setBlueContrastEnhancement`

Expand All @@ -185,7 +185,7 @@ Returns the contrast enchancement to use for the blue channel.

void setBlueContrastEnhancement( QgsContrastEnhancement *enhancement /Transfer/ );
%Docstring
Sets the contrast ``enchancement`` to use for the blue channel.
Sets the contrast ``enhancement`` to use for the blue channel.

Ownership of ``enhancement`` is transferred.

Expand Down
Expand Up @@ -46,7 +46,7 @@ QgsMultiBandColorRenderer cannot be copied. Use :py:func:`~QgsMultiBandColorRend

const QgsContrastEnhancement *redContrastEnhancement() const;
%Docstring
Returns the contrast enchancement to use for the red channel.
Returns the contrast enhancement to use for the red channel.

.. seealso:: :py:func:`setRedContrastEnhancement`

Expand All @@ -57,7 +57,7 @@ Returns the contrast enchancement to use for the red channel.

void setRedContrastEnhancement( QgsContrastEnhancement *ce /Transfer/ );
%Docstring
Sets the contrast enchancement to use for the red channel.
Sets the contrast enhancement to use for the red channel.

Ownership of the enhancement is transferred.

Expand All @@ -70,7 +70,7 @@ Ownership of the enhancement is transferred.

const QgsContrastEnhancement *greenContrastEnhancement() const;
%Docstring
Returns the contrast enchancement to use for the green channel.
Returns the contrast enhancement to use for the green channel.

.. seealso:: :py:func:`setGreenContrastEnhancement`

Expand All @@ -81,7 +81,7 @@ Returns the contrast enchancement to use for the green channel.

void setGreenContrastEnhancement( QgsContrastEnhancement *ce /Transfer/ );
%Docstring
Sets the contrast enchancement to use for the green channel.
Sets the contrast enhancement to use for the green channel.

Ownership of the enhancement is transferred.

Expand All @@ -94,7 +94,7 @@ Ownership of the enhancement is transferred.

const QgsContrastEnhancement *blueContrastEnhancement() const;
%Docstring
Returns the contrast enchancement to use for the blue channel.
Returns the contrast enhancement to use for the blue channel.

.. seealso:: :py:func:`setBlueContrastEnhancement`

Expand All @@ -105,7 +105,7 @@ Returns the contrast enchancement to use for the blue channel.

void setBlueContrastEnhancement( QgsContrastEnhancement *ce /Transfer/ );
%Docstring
Sets the contrast enchancement to use for the blue channel.
Sets the contrast enhancement to use for the blue channel.

Ownership of the enhancement is transferred.

Expand Down
12 changes: 6 additions & 6 deletions src/core/pointcloud/qgspointcloudrgbrenderer.h
Expand Up @@ -113,7 +113,7 @@ class CORE_EXPORT QgsPointCloudRgbRenderer : public QgsPointCloudRenderer
void setBlueAttribute( const QString &attribute );

/**
* Returns the contrast enchancement to use for the red channel.
* Returns the contrast enhancement to use for the red channel.
*
* \see setRedContrastEnhancement()
* \see greenContrastEnhancement()
Expand All @@ -122,7 +122,7 @@ class CORE_EXPORT QgsPointCloudRgbRenderer : public QgsPointCloudRenderer
const QgsContrastEnhancement *redContrastEnhancement() const;

/**
* Sets the contrast \a enchancement to use for the red channel.
* Sets the contrast \a enhancement to use for the red channel.
*
* Ownership of \a enhancement is transferred.
*
Expand All @@ -133,7 +133,7 @@ class CORE_EXPORT QgsPointCloudRgbRenderer : public QgsPointCloudRenderer
void setRedContrastEnhancement( QgsContrastEnhancement *enhancement SIP_TRANSFER );

/**
* Returns the contrast enchancement to use for the green channel.
* Returns the contrast enhancement to use for the green channel.
*
* \see setGreenContrastEnhancement()
* \see redContrastEnhancement()
Expand All @@ -142,7 +142,7 @@ class CORE_EXPORT QgsPointCloudRgbRenderer : public QgsPointCloudRenderer
const QgsContrastEnhancement *greenContrastEnhancement() const;

/**
* Sets the contrast \a enchancement to use for the green channel.
* Sets the contrast \a enhancement to use for the green channel.
*
* Ownership of \a enhancement is transferred.
*
Expand All @@ -153,7 +153,7 @@ class CORE_EXPORT QgsPointCloudRgbRenderer : public QgsPointCloudRenderer
void setGreenContrastEnhancement( QgsContrastEnhancement *enhancement SIP_TRANSFER );

/**
* Returns the contrast enchancement to use for the blue channel.
* Returns the contrast enhancement to use for the blue channel.
*
* \see setBlueContrastEnhancement()
* \see redContrastEnhancement()
Expand All @@ -162,7 +162,7 @@ class CORE_EXPORT QgsPointCloudRgbRenderer : public QgsPointCloudRenderer
const QgsContrastEnhancement *blueContrastEnhancement() const;

/**
* Sets the contrast \a enchancement to use for the blue channel.
* Sets the contrast \a enhancement to use for the blue channel.
*
* Ownership of \a enhancement is transferred.
*
Expand Down
12 changes: 6 additions & 6 deletions src/core/raster/qgsmultibandcolorrenderer.h
Expand Up @@ -56,7 +56,7 @@ class CORE_EXPORT QgsMultiBandColorRenderer: public QgsRasterRenderer
void setBlueBand( int band ) { mBlueBand = band; }

/**
* Returns the contrast enchancement to use for the red channel.
* Returns the contrast enhancement to use for the red channel.
*
* \see setRedContrastEnhancement()
* \see greenContrastEnhancement()
Expand All @@ -65,7 +65,7 @@ class CORE_EXPORT QgsMultiBandColorRenderer: public QgsRasterRenderer
const QgsContrastEnhancement *redContrastEnhancement() const { return mRedContrastEnhancement; }

/**
* Sets the contrast enchancement to use for the red channel.
* Sets the contrast enhancement to use for the red channel.
*
* Ownership of the enhancement is transferred.
*
Expand All @@ -76,7 +76,7 @@ class CORE_EXPORT QgsMultiBandColorRenderer: public QgsRasterRenderer
void setRedContrastEnhancement( QgsContrastEnhancement *ce SIP_TRANSFER );

/**
* Returns the contrast enchancement to use for the green channel.
* Returns the contrast enhancement to use for the green channel.
*
* \see setGreenContrastEnhancement()
* \see redContrastEnhancement()
Expand All @@ -85,7 +85,7 @@ class CORE_EXPORT QgsMultiBandColorRenderer: public QgsRasterRenderer
const QgsContrastEnhancement *greenContrastEnhancement() const { return mGreenContrastEnhancement; }

/**
* Sets the contrast enchancement to use for the green channel.
* Sets the contrast enhancement to use for the green channel.
*
* Ownership of the enhancement is transferred.
*
Expand All @@ -96,7 +96,7 @@ class CORE_EXPORT QgsMultiBandColorRenderer: public QgsRasterRenderer
void setGreenContrastEnhancement( QgsContrastEnhancement *ce SIP_TRANSFER );

/**
* Returns the contrast enchancement to use for the blue channel.
* Returns the contrast enhancement to use for the blue channel.
*
* \see setBlueContrastEnhancement()
* \see redContrastEnhancement()
Expand All @@ -105,7 +105,7 @@ class CORE_EXPORT QgsMultiBandColorRenderer: public QgsRasterRenderer
const QgsContrastEnhancement *blueContrastEnhancement() const { return mBlueContrastEnhancement; }

/**
* Sets the contrast enchancement to use for the blue channel.
* Sets the contrast enhancement to use for the blue channel.
*
* Ownership of the enhancement is transferred.
*
Expand Down

0 comments on commit 28c2788

Please sign in to comment.