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

LibWeb/Painting: Remove redundant 'Painting::' namespace prefixes

This commit is contained in:
Linus Groh 2023-04-20 16:02:29 +01:00 committed by Andreas Kling
parent 36d35c9c82
commit 352da3623b
5 changed files with 25 additions and 25 deletions

View file

@ -293,10 +293,10 @@ void paint_all_borders(PaintContext& context, CSSPixelRect const& bordered_rect,
border_color_no_alpha.set_alpha(255);
// Paint the strait line part of the border:
Painting::paint_border(context, Painting::BorderEdge::Top, top_border_rect, border_radii_data, borders_data);
Painting::paint_border(context, Painting::BorderEdge::Right, right_border_rect, border_radii_data, borders_data);
Painting::paint_border(context, Painting::BorderEdge::Bottom, bottom_border_rect, border_radii_data, borders_data);
Painting::paint_border(context, Painting::BorderEdge::Left, left_border_rect, border_radii_data, borders_data);
paint_border(context, BorderEdge::Top, top_border_rect, border_radii_data, borders_data);
paint_border(context, BorderEdge::Right, right_border_rect, border_radii_data, borders_data);
paint_border(context, BorderEdge::Bottom, bottom_border_rect, border_radii_data, borders_data);
paint_border(context, BorderEdge::Left, left_border_rect, border_radii_data, borders_data);
if (!top_left && !top_right && !bottom_left && !bottom_right)
return;