Skip to content

Commit 52d218c

Browse files
author
jef
committedAug 18, 2009
clean double assignment
git-svn-id: http://svn.osgeo.org/qgis/trunk@11423 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 7c2b3a2 commit 52d218c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/app/qgscustomprojectiondialog.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -927,9 +927,9 @@ void QgsCustomProjectionDialog::on_pbnCalculate_clicked()
927927
{
928928
QString tmp;
929929

930-
tmp = tmp = QLocale::system().toString( northing, 'f', 4 );
930+
tmp = QLocale::system().toString( northing, 'f', 4 );
931931
projectedX->setText( tmp );
932-
tmp = tmp = QLocale::system().toString( easthing, 'f', 4 );
932+
tmp = QLocale::system().toString( easthing, 'f', 4 );
933933
projectedY->setText( tmp );
934934
}
935935

0 commit comments

Comments
 (0)
Please sign in to comment.