1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:57:44 +00:00

WindowServer: Rename default_positioned() -> is_default_positioned()

Tiny change, but it really bothered me that this was the only function
not named like the rest.
This commit is contained in:
Valtteri Koskivuori 2022-01-24 18:24:58 +02:00 committed by Linus Groh
parent 82509ca0c8
commit 7a537ad08f
2 changed files with 2 additions and 2 deletions

View file

@ -321,7 +321,7 @@ public:
bool is_destroyed() const { return m_destroyed; }
void destroy();
bool default_positioned() const { return m_default_positioned; }
bool is_default_positioned() const { return m_default_positioned; }
void set_default_positioned(bool p) { m_default_positioned = p; }
bool is_opaque() const