Skip to content

Commit 0b10498

Browse files
committedJan 7, 2014
Dxf export: more precision for doubles
1 parent 5c38775 commit 0b10498

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/dxf/qgsdxfexport.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ void QgsDxfExport::writeInt( int i )
354354

355355
void QgsDxfExport::writeDouble( double d )
356356
{
357-
mTextStream << QString( "%1\n" ).arg( d );
357+
mTextStream << qgsDoubleToString( d ) << "\n";
358358
}
359359

360360
void QgsDxfExport::writeString( const QString& s )

0 commit comments

Comments
 (0)
Please sign in to comment.