Skip to content

Commit 9f4d41b

Browse files
committed
fix #22039
1 parent 10dd209 commit 9f4d41b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/layout/qgslayoutexporter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1355,7 +1355,7 @@ std::unique_ptr<double[]> QgsLayoutExporter::computeGeoTransform( const QgsLayou
13551355
void QgsLayoutExporter::writeWorldFile( const QString &worldFileName, double a, double b, double c, double d, double e, double f ) const
13561356
{
13571357
QFile worldFile( worldFileName );
1358-
if ( !worldFile.open( QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate ) )
1358+
if ( !worldFile.open( QIODevice::WriteOnly | QIODevice::Truncate ) )
13591359
{
13601360
return;
13611361
}

0 commit comments

Comments
 (0)