mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 08:03:21 +00:00
23 lines
533 B
C++
23 lines
533 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibWeb/Layout/LabelableNode.h>
|
||
|
#include <LibWeb/Painting/LabelablePaintable.h>
|
||
|
|
||
|
namespace Web::Layout {
|
||
|
|
||
|
Painting::LabelablePaintable* LabelableNode::paintable()
|
||
|
{
|
||
|
return static_cast<Painting::LabelablePaintable*>(ReplacedBox::paintable());
|
||
|
}
|
||
|
|
||
|
Painting::LabelablePaintable const* LabelableNode::paintable() const
|
||
|
{
|
||
|
return static_cast<Painting::LabelablePaintable const*>(ReplacedBox::paintable());
|
||
|
}
|
||
|
|
||
|
}
|