summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Layout/Box.h
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2021-09-19 15:58:26 +0100
committerAndreas Kling <kling@serenityos.org>2021-09-19 22:53:35 +0200
commitabc22b727c099ece8f13d9823b3e29de8769d61c (patch)
treea95ce56c025054b55fe166757a07454f8955dd98 /Userland/Libraries/LibWeb/Layout/Box.h
parentb047c1bc97defe66ab5a0fcb72b47ce7035dd38d (diff)
downloadserenity-abc22b727c099ece8f13d9823b3e29de8769d61c.zip
LibWeb: Move background painting from Box to its own file
This makes the code accessible to things that aren't a Box, such as InlineNode.
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/Box.h')
-rw-r--r--Userland/Libraries/LibWeb/Layout/Box.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/Box.h b/Userland/Libraries/LibWeb/Layout/Box.h
index 2457b45099..43d2728b33 100644
--- a/Userland/Libraries/LibWeb/Layout/Box.h
+++ b/Userland/Libraries/LibWeb/Layout/Box.h
@@ -141,8 +141,6 @@ protected:
virtual void did_set_rect() { }
- void paint_background_image(PaintContext&, const Gfx::Bitmap&, CSS::Repeat, CSS::Repeat, Gfx::IntRect);
-
Vector<LineBox> m_line_boxes;
private: