mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-09 19:16:02 +00:00
LibWeb: Convert a couple west-const formattings to east-const
This commit is contained in:
parent
7ff6d8d9e2
commit
efd8176ce3
Notes:
sideshowbarker
2024-07-17 01:23:08 +09:00
Author: https://github.com/trflynn89
Commit: efd8176ce3
Pull-request: https://github.com/SerenityOS/serenity/pull/19308
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