diff options
author | Andreas Kling <kling@serenityos.org> | 2022-03-10 02:13:28 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-11 00:21:49 +0100 |
commit | f0d833a3d7d404fae17fd5199a42dfdddc268f3f (patch) | |
tree | a0a6e760482ebbdc0cf6ccb25c5aeec5de673e2c /Userland/Libraries/LibWeb/Layout/BlockContainer.h | |
parent | a4d51b3dc22d2fb4abad7b19e4ec424261707e27 (diff) | |
download | serenity-f0d833a3d7d404fae17fd5199a42dfdddc268f3f.zip |
LibWeb: Move StackingContext and PaintPhase into the Painting namespace
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/BlockContainer.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/BlockContainer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/BlockContainer.h b/Userland/Libraries/LibWeb/Layout/BlockContainer.h index 2eda20df56..3cd353a9af 100644 --- a/Userland/Libraries/LibWeb/Layout/BlockContainer.h +++ b/Userland/Libraries/LibWeb/Layout/BlockContainer.h @@ -18,7 +18,7 @@ public: BlockContainer(DOM::Document&, DOM::Node*, CSS::ComputedValues); virtual ~BlockContainer() override; - virtual void paint(PaintContext&, PaintPhase) override; + virtual void paint(PaintContext&, Painting::PaintPhase) override; virtual HitTestResult hit_test(const Gfx::IntPoint&, HitTestType) const override; |