Fix seealso links

This commit is contained in:
Nyall Dawson 2018-06-14 21:47:09 +10:00
parent f838001d0a
commit f99d51175f
2 changed files with 10 additions and 10 deletions

View File

@ -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;
@ -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
@ -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

View File

@ -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; }