Skip to content

Commit

Permalink
Fix clang warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Mar 3, 2023
1 parent 3bd3b6e commit 4dad602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/layout/qgslayoutdesignerdialog.cpp
Expand Up @@ -4247,7 +4247,7 @@ bool QgsLayoutDesignerDialog::showFileSizeWarning()
{
int answer = QMessageBox::warning( this, tr( "Export Layout" ),
tr( "To create an image of %1x%2 requires about %3 of memory. Proceed?" )
.arg( width ).arg( height ).arg( QgsFileUtils::representFileSize( memuse ) ),
.arg( width ).arg( height ).arg( QgsFileUtils::representFileSize( static_cast< qint64 >( memuse ) ) ),
QMessageBox::Ok | QMessageBox::Cancel, QMessageBox::Ok );

raise();
Expand Down

0 comments on commit 4dad602

Please sign in to comment.