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

LibWeb/Painting: Rename StackingContext::paintable{ => _box}()

It returns a PaintableBox, not any Paintable.
This commit is contained in:
Linus Groh 2023-04-20 16:00:21 +01:00 committed by Andreas Kling
parent e6be5c37c0
commit ec37b55777
2 changed files with 14 additions and 14 deletions

View file

@ -20,7 +20,7 @@ public:
StackingContext* parent() { return m_parent; }
StackingContext const* parent() const { return m_parent; }
PaintableBox const& paintable() const { return *m_box->paint_box(); }
PaintableBox const& paintable_box() const { return *m_box->paint_box(); }
enum class StackingContextPaintPhase {
BackgroundAndBorders,