Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
nyalldawson committed Jun 13, 2018
1 parent 81d5a2d commit 50c28e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmreclassifybylayer.cpp
Expand Up @@ -80,7 +80,7 @@ bool QgsReclassifyAlgorithmBase::prepareAlgorithm( const QVariantMap &parameters
mExtent = layer->extent();
mCrs = layer->crs();
mRasterUnitsPerPixelX = std::abs( layer->rasterUnitsPerPixelX() );
mRasterUnitsPerPixelY = std::abs( layer->rasterUnitsPerPixelX() );
mRasterUnitsPerPixelY = std::abs( layer->rasterUnitsPerPixelY() );
mNbCellsXProvider = mInterface->xSize();
mNbCellsYProvider = mInterface->ySize();

Expand Down

0 comments on commit 50c28e4

Please sign in to comment.