Skip to content

Commit

Permalink
Fix qt warning
Browse files Browse the repository at this point in the history
(cherry picked from commit 23c7daf)
  • Loading branch information
nyalldawson committed Dec 11, 2018
1 parent aa15512 commit ceb86a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/layout/qgslayoutexporter.cpp
Expand Up @@ -543,7 +543,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 ceb86a9

Please sign in to comment.