1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:07:34 +00:00

LibDraw: Remove convenience functions for the old WindowServer IPC

This commit is contained in:
Andreas Kling 2019-12-02 10:58:01 +01:00
parent 86504f4461
commit b780dcf353
3 changed files with 0 additions and 13 deletions

View file

@ -7,8 +7,6 @@
#include <LibDraw/Size.h>
#include <LibDraw/TextAlignment.h>
struct WSAPI_Rect;
class Rect {
public:
Rect() {}
@ -28,8 +26,6 @@ public:
{
}
Rect(const WSAPI_Rect&);
bool is_null() const
{
return width() == 0 && height() == 0;
@ -227,8 +223,6 @@ public:
Vector<Rect, 4> shatter(const Rect& hammer) const;
operator WSAPI_Rect() const;
bool operator==(const Rect& other) const
{
return m_location == other.m_location