Skip to content

Commit

Permalink
Fix qt warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Dec 11, 2018
1 parent 8ea3889 commit 90a9cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/layout/qgslayoutexporter.cpp
Expand Up @@ -545,7 +545,7 @@ QgsLayoutExporter::ExportResult QgsLayoutExporter::exportToPdf( QgsAbstractLayou
if ( total > 0 )
feedback->setProperty( "progress", QObject::tr( "Exporting %1 of %2" ).arg( i + 1 ).arg( total ) );
else
feedback->setProperty( "progress", QObject::tr( "Exporting section %1" ).arg( i + 1 ).arg( total ) );
feedback->setProperty( "progress", QObject::tr( "Exporting section %1" ).arg( i + 1 ) );
feedback->setProgress( step * i );
}
if ( feedback && feedback->isCanceled() )
Expand Down

0 comments on commit 90a9cda

Please sign in to comment.