mirror of
https://github.com/qgis/QGIS.git
synced 2025-11-09 00:17:27 -05: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:`maximumTileWidth`
|
||||||
|
|
||||||
.. seealso:: :py:func:`setMinimumTileWidth`
|
.. seealso:: :py:func:`setMaximumTileHeight`
|
||||||
%End
|
%End
|
||||||
|
|
||||||
int maximumTileWidth() const;
|
int maximumTileWidth() const;
|
||||||
@ -79,14 +79,14 @@ Returns the maximum tile width returned during iteration.
|
|||||||
|
|
||||||
.. seealso:: :py:func:`setMaximumTileWidth`
|
.. seealso:: :py:func:`setMaximumTileWidth`
|
||||||
|
|
||||||
.. seealso:: :py:func:`minimumTileWidth`
|
.. seealso:: :py:func:`maximumTileHeight`
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void setMaximumTileHeight( int h );
|
void setMaximumTileHeight( int h );
|
||||||
%Docstring
|
%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`
|
.. seealso:: :py:func:`setMaximumTileWidth`
|
||||||
%End
|
%End
|
||||||
@ -95,7 +95,7 @@ Sets the minimum tile width returned during iteration.
|
|||||||
%Docstring
|
%Docstring
|
||||||
Returns the minimum tile width returned during iteration.
|
Returns the minimum tile width returned during iteration.
|
||||||
|
|
||||||
.. seealso:: :py:func:`setMinimumTileWidth`
|
.. seealso:: :py:func:`setMaximumTileHeight`
|
||||||
|
|
||||||
.. seealso:: :py:func:`maximumTileWidth`
|
.. seealso:: :py:func:`maximumTileWidth`
|
||||||
%End
|
%End
|
||||||
|
|||||||
@ -97,27 +97,27 @@ class CORE_EXPORT QgsRasterIterator
|
|||||||
/**
|
/**
|
||||||
* Sets the maximum tile width returned during iteration.
|
* Sets the maximum tile width returned during iteration.
|
||||||
* \see maximumTileWidth()
|
* \see maximumTileWidth()
|
||||||
* \see setMinimumTileWidth()
|
* \see setMaximumTileHeight()
|
||||||
*/
|
*/
|
||||||
void setMaximumTileWidth( int w ) { mMaximumTileWidth = w; }
|
void setMaximumTileWidth( int w ) { mMaximumTileWidth = w; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the maximum tile width returned during iteration.
|
* Returns the maximum tile width returned during iteration.
|
||||||
* \see setMaximumTileWidth()
|
* \see setMaximumTileWidth()
|
||||||
* \see minimumTileWidth()
|
* \see maximumTileHeight()
|
||||||
*/
|
*/
|
||||||
int maximumTileWidth() const { return mMaximumTileWidth; }
|
int maximumTileWidth() const { return mMaximumTileWidth; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the minimum tile width returned during iteration.
|
* Sets the minimum tile height returned during iteration.
|
||||||
* \see minimumTileWidth()
|
* \see maximumTileHeight()
|
||||||
* \see setMaximumTileWidth()
|
* \see setMaximumTileWidth()
|
||||||
*/
|
*/
|
||||||
void setMaximumTileHeight( int h ) { mMaximumTileHeight = h; }
|
void setMaximumTileHeight( int h ) { mMaximumTileHeight = h; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the minimum tile width returned during iteration.
|
* Returns the minimum tile width returned during iteration.
|
||||||
* \see setMinimumTileWidth()
|
* \see setMaximumTileHeight()
|
||||||
* \see maximumTileWidth()
|
* \see maximumTileWidth()
|
||||||
*/
|
*/
|
||||||
int maximumTileHeight() const { return mMaximumTileHeight; }
|
int maximumTileHeight() const { return mMaximumTileHeight; }
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user