mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:27:35 +00:00
LibDraw: Remove convenience functions for the old WindowServer IPC
This commit is contained in:
parent
86504f4461
commit
b780dcf353
3 changed files with 0 additions and 13 deletions
|
@ -4,8 +4,6 @@
|
|||
#include <AK/LogStream.h>
|
||||
#include <LibDraw/Orientation.h>
|
||||
|
||||
struct WSAPI_Size;
|
||||
|
||||
class Size {
|
||||
public:
|
||||
Size() {}
|
||||
|
@ -14,7 +12,6 @@ public:
|
|||
, m_height(h)
|
||||
{
|
||||
}
|
||||
Size(const WSAPI_Size&);
|
||||
|
||||
bool is_null() const { return !m_width && !m_height; }
|
||||
bool is_empty() const { return m_width <= 0 || m_height <= 0; }
|
||||
|
@ -77,7 +74,6 @@ public:
|
|||
set_height(value);
|
||||
}
|
||||
|
||||
operator WSAPI_Size() const;
|
||||
|
||||
String to_string() const { return String::format("[%dx%d]", m_width, m_height); }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue