Skip to content

Commit 82fdb56

Browse files
committed
Const correctness for rasterblock
1 parent 966c3db commit 82fdb56

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/core/auto_generated/raster/qgsrasterblock.sip.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Read a single value
186186
:return: color *
187187
%End
188188

189-
bool isNoData( int row, int column );
189+
bool isNoData( int row, int column ) const;
190190
%Docstring
191191
Check if value at position is no data
192192

@@ -196,7 +196,7 @@ Check if value at position is no data
196196
:return: true if value is no data *
197197
%End
198198

199-
bool isNoData( qgssize row, qgssize column );
199+
bool isNoData( qgssize row, qgssize column ) const;
200200
%Docstring
201201
Check if value at position is no data
202202

@@ -206,7 +206,7 @@ Check if value at position is no data
206206
:return: true if value is no data *
207207
%End
208208

209-
bool isNoData( qgssize index );
209+
bool isNoData( qgssize index ) const;
210210
%Docstring
211211
Check if value at position is no data
212212

0 commit comments

Comments
 (0)