mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-16 00:05:45 -04:00
Fix seealso links
This commit is contained in:
parent
f838001d0a
commit
f99d51175f
@ -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
|
||||
|
@ -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; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user