1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:47:45 +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

@ -2,13 +2,13 @@
#include <AK/AKString.h>
struct GUI_Size;
struct WSAPI_Size;
class Size {
public:
Size() { }
Size(int w, int h) : m_width(w), m_height(h) { }
Size(const GUI_Size&);
Size(const WSAPI_Size&);
bool is_empty() const { return !m_width || !m_height; }
@ -38,7 +38,7 @@ public:
return *this;
}
operator GUI_Size() const;
operator WSAPI_Size() const;
String to_string() const { return String::format("[%d,%d]", m_width, m_height); }