Skip to content

Commit

Permalink
Revert arg simplification attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
DelazJ committed Feb 13, 2018
1 parent e6a5743 commit 576030b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/layout/qgslayoutdesignerdialog.cpp
Expand Up @@ -1794,7 +1794,7 @@ void QgsLayoutDesignerDialog::exportToRaster()
tr( "Trying to create image %1 (%2×%3 @ %4dpi ) "
"resulted in a memory overflow.\n\n"
"Please try a lower resolution or a smaller paper size." )
.arg( exporter.errorFile(), imageSize.width(), imageSize.height(), settings.dpi ),
.arg( exporter.errorFile() ).arg( imageSize.width() ).arg( imageSize.height() ).arg( settings.dpi ),
QMessageBox::Ok, QMessageBox::Ok );
break;

Expand Down

0 comments on commit 576030b

Please sign in to comment.