Skip to content

Commit

Permalink
fix #22039
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed May 9, 2019
1 parent 10dd209 commit 9f4d41b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/layout/qgslayoutexporter.cpp
Expand Up @@ -1355,7 +1355,7 @@ std::unique_ptr<double[]> QgsLayoutExporter::computeGeoTransform( const QgsLayou
void QgsLayoutExporter::writeWorldFile( const QString &worldFileName, double a, double b, double c, double d, double e, double f ) const
{
QFile worldFile( worldFileName );
if ( !worldFile.open( QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate ) )
if ( !worldFile.open( QIODevice::WriteOnly | QIODevice::Truncate ) )
{
return;
}
Expand Down

0 comments on commit 9f4d41b

Please sign in to comment.