mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 19:17:35 +00:00
LibGfx: Convert StringBuilder::appendf() => AK::Format
This commit is contained in:
parent
f0687dbbb7
commit
eb05931ab5
2 changed files with 3 additions and 3 deletions
|
@ -197,7 +197,7 @@ String Path::to_string() const
|
|||
builder.append("Invalid");
|
||||
break;
|
||||
}
|
||||
builder.appendf("(%s", segment.point().to_string().characters());
|
||||
builder.appendff("({}", segment.point());
|
||||
|
||||
switch (segment.type()) {
|
||||
case Segment::Type::QuadraticBezierCurveTo:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue