1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 12:27:36 +00:00

Applications: Convert StringBuilder::appendf() => AK::Format

This commit is contained in:
Andreas Kling 2021-05-07 20:44:27 +02:00
parent 8d5eb075d8
commit 840b908c0b
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ private:
{
// FIXME: Help! Make this GUI less ugly.
StringBuilder builder;
builder.appendf("%zux%zu", N, N);
builder.appendff("{}x{}", N, N);
builder.append(" Convolution");
set_title(builder.string_view());