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

WindowServer: Rename GUI_Foo to WSAPI_Foo.

This commit is contained in:
Andreas Kling 2019-02-15 09:17:18 +01:00
parent a54cd84c59
commit 29c49356e3
16 changed files with 204 additions and 204 deletions

View file

@ -4,7 +4,7 @@
#include "Size.h"
#include <AK/AKString.h>
struct GUI_Rect;
struct WSAPI_Rect;
class Rect {
public:
@ -25,7 +25,7 @@ public:
{
}
Rect(const GUI_Rect&);
Rect(const WSAPI_Rect&);
bool is_null() const
{
@ -170,7 +170,7 @@ public:
Point location() const { return m_location; }
Size size() const { return m_size; }
operator GUI_Rect() const;
operator WSAPI_Rect() const;
bool operator==(const Rect& other) const
{