Skip to content

Commit

Permalink
Allow non-ASCII layer filenames exporting GeoPDF
Browse files Browse the repository at this point in the history
  • Loading branch information
agiudiceandrea authored and nyalldawson committed Nov 18, 2020
1 parent 2677d55 commit bf44fdf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/qgsabstractgeopdfexporter.cpp
Expand Up @@ -110,6 +110,7 @@ bool QgsAbstractGeoPdfExporter::finalize( const QList<ComponentLayerDetail> &com
if ( file.open( QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate ) )
{
QTextStream out( &file );
out.setCodec( "UTF-8" );
out << composition;
}
else
Expand Down

0 comments on commit bf44fdf

Please sign in to comment.