Skip to content

Commit

Permalink
Const correctness for rasterblock
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Aug 8, 2018
1 parent 966c3db commit 82fdb56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/core/auto_generated/raster/qgsrasterblock.sip.in
Expand Up @@ -186,7 +186,7 @@ Read a single value
:return: color *
%End

bool isNoData( int row, int column );
bool isNoData( int row, int column ) const;
%Docstring
Check if value at position is no data

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

bool isNoData( qgssize row, qgssize column );
bool isNoData( qgssize row, qgssize column ) const;
%Docstring
Check if value at position is no data

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

bool isNoData( qgssize index );
bool isNoData( qgssize index ) const;
%Docstring
Check if value at position is no data

Expand Down

0 comments on commit 82fdb56

Please sign in to comment.