Skip to content

Commit f99d511

Browse files
committedJun 14, 2018
Fix seealso links
1 parent f838001 commit f99d511

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed
 

‎python/core/auto_generated/raster/qgsrasteriterator.sip.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Sets the maximum tile width returned during iteration.
7070

7171
.. seealso:: :py:func:`maximumTileWidth`
7272

73-
.. seealso:: :py:func:`setMinimumTileWidth`
73+
.. seealso:: :py:func:`setMaximumTileHeight`
7474
%End
7575

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

8080
.. seealso:: :py:func:`setMaximumTileWidth`
8181

82-
.. seealso:: :py:func:`minimumTileWidth`
82+
.. seealso:: :py:func:`maximumTileHeight`
8383
%End
8484

8585
void setMaximumTileHeight( int h );
8686
%Docstring
87-
Sets the minimum tile width returned during iteration.
87+
Sets the minimum tile height returned during iteration.
8888

89-
.. seealso:: :py:func:`minimumTileWidth`
89+
.. seealso:: :py:func:`maximumTileHeight`
9090

9191
.. seealso:: :py:func:`setMaximumTileWidth`
9292
%End
@@ -95,7 +95,7 @@ Sets the minimum tile width returned during iteration.
9595
%Docstring
9696
Returns the minimum tile width returned during iteration.
9797

98-
.. seealso:: :py:func:`setMinimumTileWidth`
98+
.. seealso:: :py:func:`setMaximumTileHeight`
9999

100100
.. seealso:: :py:func:`maximumTileWidth`
101101
%End

‎src/core/raster/qgsrasteriterator.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,27 +97,27 @@ class CORE_EXPORT QgsRasterIterator
9797
/**
9898
* Sets the maximum tile width returned during iteration.
9999
* \see maximumTileWidth()
100-
* \see setMinimumTileWidth()
100+
* \see setMaximumTileHeight()
101101
*/
102102
void setMaximumTileWidth( int w ) { mMaximumTileWidth = w; }
103103

104104
/**
105105
* Returns the maximum tile width returned during iteration.
106106
* \see setMaximumTileWidth()
107-
* \see minimumTileWidth()
107+
* \see maximumTileHeight()
108108
*/
109109
int maximumTileWidth() const { return mMaximumTileWidth; }
110110

111111
/**
112-
* Sets the minimum tile width returned during iteration.
113-
* \see minimumTileWidth()
112+
* Sets the minimum tile height returned during iteration.
113+
* \see maximumTileHeight()
114114
* \see setMaximumTileWidth()
115115
*/
116116
void setMaximumTileHeight( int h ) { mMaximumTileHeight = h; }
117117

118118
/**
119119
* Returns the minimum tile width returned during iteration.
120-
* \see setMinimumTileWidth()
120+
* \see setMaximumTileHeight()
121121
* \see maximumTileWidth()
122122
*/
123123
int maximumTileHeight() const { return mMaximumTileHeight; }

0 commit comments

Comments
 (0)
Please sign in to comment.