mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:17:36 +00:00
LibWeb: Convert a couple west-const formattings to east-const
This commit is contained in:
parent
7ff6d8d9e2
commit
efd8176ce3
1 changed files with 3 additions and 3 deletions
|
@ -149,17 +149,17 @@ public:
|
|||
HTML::HTMLHeadElement* head();
|
||||
HTML::HTMLElement* body();
|
||||
|
||||
const HTML::HTMLHtmlElement* html_element() const
|
||||
HTML::HTMLHtmlElement const* html_element() const
|
||||
{
|
||||
return const_cast<Document*>(this)->html_element();
|
||||
}
|
||||
|
||||
const HTML::HTMLHeadElement* head() const
|
||||
HTML::HTMLHeadElement const* head() const
|
||||
{
|
||||
return const_cast<Document*>(this)->head();
|
||||
}
|
||||
|
||||
const HTML::HTMLElement* body() const
|
||||
HTML::HTMLElement const* body() const
|
||||
{
|
||||
return const_cast<Document*>(this)->body();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue