mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:27:45 +00:00
LibWeb: StackingContext::paint_descendants() can take const layout node
It doesn't mutate the layout tree in any way.
This commit is contained in:
parent
faba3ebfca
commit
055a1998c1
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ public:
|
|||
FocusAndOverlay,
|
||||
};
|
||||
|
||||
void paint_descendants(PaintContext&, Layout::Node&, StackingContextPaintPhase) const;
|
||||
void paint_descendants(PaintContext&, Layout::Node const&, StackingContextPaintPhase) const;
|
||||
void paint(PaintContext&) const;
|
||||
Optional<HitTestResult> hit_test(Gfx::FloatPoint const&, HitTestType) const;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue