Skip to content

Commit

Permalink
Fix seealso links
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jun 14, 2018
1 parent f838001 commit f99d511
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions python/core/auto_generated/raster/qgsrasteriterator.sip.in
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Sets the maximum tile width returned during iteration.

.. seealso:: :py:func:`maximumTileWidth`

.. seealso:: :py:func:`setMinimumTileWidth`
.. seealso:: :py:func:`setMaximumTileHeight`
%End

int maximumTileWidth() const;
Expand All @@ -79,14 +79,14 @@ Returns the maximum tile width returned during iteration.

.. seealso:: :py:func:`setMaximumTileWidth`

.. seealso:: :py:func:`minimumTileWidth`
.. seealso:: :py:func:`maximumTileHeight`
%End

void setMaximumTileHeight( int h );
%Docstring
Sets the minimum tile width returned during iteration.
Sets the minimum tile height returned during iteration.

.. seealso:: :py:func:`minimumTileWidth`
.. seealso:: :py:func:`maximumTileHeight`

.. seealso:: :py:func:`setMaximumTileWidth`
%End
Expand All @@ -95,7 +95,7 @@ Sets the minimum tile width returned during iteration.
%Docstring
Returns the minimum tile width returned during iteration.

.. seealso:: :py:func:`setMinimumTileWidth`
.. seealso:: :py:func:`setMaximumTileHeight`

.. seealso:: :py:func:`maximumTileWidth`
%End
Expand Down
10 changes: 5 additions & 5 deletions src/core/raster/qgsrasteriterator.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,27 +97,27 @@ class CORE_EXPORT QgsRasterIterator
/**
* Sets the maximum tile width returned during iteration.
* \see maximumTileWidth()
* \see setMinimumTileWidth()
* \see setMaximumTileHeight()
*/
void setMaximumTileWidth( int w ) { mMaximumTileWidth = w; }

/**
* Returns the maximum tile width returned during iteration.
* \see setMaximumTileWidth()
* \see minimumTileWidth()
* \see maximumTileHeight()
*/
int maximumTileWidth() const { return mMaximumTileWidth; }

/**
* Sets the minimum tile width returned during iteration.
* \see minimumTileWidth()
* Sets the minimum tile height returned during iteration.
* \see maximumTileHeight()
* \see setMaximumTileWidth()
*/
void setMaximumTileHeight( int h ) { mMaximumTileHeight = h; }

/**
* Returns the minimum tile width returned during iteration.
* \see setMinimumTileWidth()
* \see setMaximumTileHeight()
* \see maximumTileWidth()
*/
int maximumTileHeight() const { return mMaximumTileHeight; }
Expand Down

0 comments on commit f99d511

Please sign in to comment.