Skip to content

Commit

Permalink
dwg import: handle filenames with utf8 characters
Browse files Browse the repository at this point in the history
(cherry picked from commit 4945e97)
  • Loading branch information
jef-n committed Aug 2, 2018
1 parent 028a8be commit dd5ed68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/dwg/qgsdwgimporter.cpp
Expand Up @@ -596,7 +596,7 @@ bool QgsDwgImporter::import( const QString &drawing, QString &error, bool doExpa
if ( fi.suffix().toLower() == QLatin1String( "dxf" ) )
{
//loads dxf
std::unique_ptr<dxfRW> dxf( new dxfRW( drawing.toUtf8() ) );
std::unique_ptr<dxfRW> dxf( new dxfRW( drawing.toLocal8Bit() ) );
if ( !dxf->read( this, false ) )
{
result = DRW::BAD_UNKNOWN;
Expand All @@ -605,7 +605,7 @@ bool QgsDwgImporter::import( const QString &drawing, QString &error, bool doExpa
else if ( fi.suffix().toLower() == QLatin1String( "dwg" ) )
{
//loads dwg
std::unique_ptr<dwgR> dwg( new dwgR( drawing.toUtf8() ) );
std::unique_ptr<dwgR> dwg( new dwgR( drawing.toLocal8Bit() ) );
if ( !dwg->read( this, false ) )
{
result = dwg->getError();
Expand Down

0 comments on commit dd5ed68

Please sign in to comment.