1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:57:34 +00:00

LibGfx: Remove unused StylePainter::paint_surface()

This commit is contained in:
Andreas Kling 2021-07-28 19:13:08 +02:00
parent a50b937632
commit 03cca20699
4 changed files with 0 additions and 19 deletions

View file

@ -28,11 +28,6 @@ void StylePainter::paint_button(Painter& painter, const IntRect& rect, const Pal
current().paint_button(painter, rect, palette, button_style, pressed, hovered, checked, enabled, focused);
}
void StylePainter::paint_surface(Painter& painter, const IntRect& rect, const Palette& palette, bool paint_vertical_lines, bool paint_top_line)
{
current().paint_surface(painter, rect, palette, paint_vertical_lines, paint_top_line);
}
void StylePainter::paint_frame(Painter& painter, const IntRect& rect, const Palette& palette, FrameShape shape, FrameShadow shadow, int thickness, bool skip_vertical_lines)
{
current().paint_frame(painter, rect, palette, shape, shadow, thickness, skip_vertical_lines);