Skip to content

Commit

Permalink
Fix for bug #1990
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@11922 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Nov 4, 2009
1 parent 562da32 commit d1970b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins/interpolation/qgsinterpolationdialog.cpp
Expand Up @@ -309,7 +309,7 @@ void QgsInterpolationDialog::on_mOutputFileButton_clicked()

void QgsInterpolationDialog::on_mOutputFileLineEdit_textChanged()
{
if ( mOutputFileLineEdit->text().endsWith(".asc"))
if ( mOutputFileLineEdit->text().endsWith( ".asc" ) )
{
enableOrDisableOkButton();
}
Expand Down Expand Up @@ -405,6 +405,7 @@ void QgsInterpolationDialog::on_mBBoxToCurrentExtent_clicked()
mXMaxLineEdit->setText( QString::number( extent.xMaximum() ) );
mYMinLineEdit->setText( QString::number( extent.yMinimum() ) );
mYMaxLineEdit->setText( QString::number( extent.yMaximum() ) );
setNewCellsizeOnBoundingBoxChange();
}
}
}
Expand Down

0 comments on commit d1970b0

Please sign in to comment.