File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
python/core/auto_generated/raster Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ Sets the maximum tile width returned during iteration.
70
70
71
71
.. seealso:: :py:func:`maximumTileWidth`
72
72
73
- .. seealso:: :py:func:`setMinimumTileWidth `
73
+ .. seealso:: :py:func:`setMaximumTileHeight `
74
74
%End
75
75
76
76
int maximumTileWidth() const;
@@ -79,14 +79,14 @@ Returns the maximum tile width returned during iteration.
79
79
80
80
.. seealso:: :py:func:`setMaximumTileWidth`
81
81
82
- .. seealso:: :py:func:`minimumTileWidth `
82
+ .. seealso:: :py:func:`maximumTileHeight `
83
83
%End
84
84
85
85
void setMaximumTileHeight( int h );
86
86
%Docstring
87
- Sets the minimum tile width returned during iteration.
87
+ Sets the minimum tile height returned during iteration.
88
88
89
- .. seealso:: :py:func:`minimumTileWidth `
89
+ .. seealso:: :py:func:`maximumTileHeight `
90
90
91
91
.. seealso:: :py:func:`setMaximumTileWidth`
92
92
%End
@@ -95,7 +95,7 @@ Sets the minimum tile width returned during iteration.
95
95
%Docstring
96
96
Returns the minimum tile width returned during iteration.
97
97
98
- .. seealso:: :py:func:`setMinimumTileWidth `
98
+ .. seealso:: :py:func:`setMaximumTileHeight `
99
99
100
100
.. seealso:: :py:func:`maximumTileWidth`
101
101
%End
Original file line number Diff line number Diff line change @@ -97,27 +97,27 @@ class CORE_EXPORT QgsRasterIterator
97
97
/* *
98
98
* Sets the maximum tile width returned during iteration.
99
99
* \see maximumTileWidth()
100
- * \see setMinimumTileWidth ()
100
+ * \see setMaximumTileHeight ()
101
101
*/
102
102
void setMaximumTileWidth ( int w ) { mMaximumTileWidth = w; }
103
103
104
104
/* *
105
105
* Returns the maximum tile width returned during iteration.
106
106
* \see setMaximumTileWidth()
107
- * \see minimumTileWidth ()
107
+ * \see maximumTileHeight ()
108
108
*/
109
109
int maximumTileWidth () const { return mMaximumTileWidth ; }
110
110
111
111
/* *
112
- * Sets the minimum tile width returned during iteration.
113
- * \see minimumTileWidth ()
112
+ * Sets the minimum tile height returned during iteration.
113
+ * \see maximumTileHeight ()
114
114
* \see setMaximumTileWidth()
115
115
*/
116
116
void setMaximumTileHeight ( int h ) { mMaximumTileHeight = h; }
117
117
118
118
/* *
119
119
* Returns the minimum tile width returned during iteration.
120
- * \see setMinimumTileWidth ()
120
+ * \see setMaximumTileHeight ()
121
121
* \see maximumTileWidth()
122
122
*/
123
123
int maximumTileHeight () const { return mMaximumTileHeight ; }
You can’t perform that action at this time.
0 commit comments