Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
nine cell filter: restore defaults
  • Loading branch information
jef-n committed Feb 9, 2015
1 parent 47ffa70 commit 90cc725
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/analysis/raster/qgsninecellfilter.cpp
Expand Up @@ -30,20 +30,20 @@ QgsNineCellFilter::QgsNineCellFilter( const QString& inputFile, const QString& o
: mInputFile( inputFile )
, mOutputFile( outputFile )
, mOutputFormat( outputFormat )
, mCellSizeX( 0 )
, mCellSizeY( 0 )
, mInputNodataValue( 0 )
, mOutputNodataValue( 0 )
, mCellSizeX( -1.0 )
, mCellSizeY( -1.0 )
, mInputNodataValue( -1.0 )
, mOutputNodataValue( -1.0 )
, mZFactor( 1.0 )
{

}

QgsNineCellFilter::QgsNineCellFilter()
: mCellSizeX( 0 )
, mCellSizeY( 0 )
, mInputNodataValue( 0 )
, mOutputNodataValue( 0 )
: mCellSizeX( -1.0 )
, mCellSizeY( -1.0 )
, mInputNodataValue( -1.0 )
, mOutputNodataValue( -1.0 )
, mZFactor( 1.0 )
{
}
Expand Down

0 comments on commit 90cc725

Please sign in to comment.