Skip to content

Commit a46fabf

Browse files
author
homann
committedSep 19, 2008

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/plugins/georeferencer/qgspointdialog.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,8 +351,8 @@ bool QgsPointDialog::generateWorldFile()
351351
for ( unsigned int i = 0; i < mapCoords.size(); ++i )
352352
{
353353
points << ( QString( "%1\t%2\t%3\t%4" ).
354-
arg( mapCoords[i].x() ).arg( mapCoords[i].y(), 0, 'f', 15 ).
355-
arg( pixelCoords[i].x() ).arg( pixelCoords[i].y(), 0, 'f', 15 ) ) << endl;
354+
arg( mapCoords[i].x(), 0, 'f', 15 ).arg( mapCoords[i].y(), 0, 'f', 15 ).
355+
arg( pixelCoords[i].x(), 0, 'f', 15 ).arg( pixelCoords[i].y(), 0, 'f', 15 ) ) << endl;
356356
}
357357
}
358358
return true;

0 commit comments

Comments
 (0)
Please sign in to comment.