Skip to content

Commit

Permalink
clean double assignment
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@11423 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Aug 18, 2009
1 parent 7c2b3a2 commit 52d218c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgscustomprojectiondialog.cpp
Expand Up @@ -927,9 +927,9 @@ void QgsCustomProjectionDialog::on_pbnCalculate_clicked()
{
QString tmp;

tmp = tmp = QLocale::system().toString( northing, 'f', 4 );
tmp = QLocale::system().toString( northing, 'f', 4 );
projectedX->setText( tmp );
tmp = tmp = QLocale::system().toString( easthing, 'f', 4 );
tmp = QLocale::system().toString( easthing, 'f', 4 );
projectedY->setText( tmp );
}

Expand Down

0 comments on commit 52d218c

Please sign in to comment.