1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:48:14 +00:00

LibGfx: Replace manual forward declarations with <LibGfx/Forward.h>

This commit is contained in:
Andreas Kling 2020-02-15 00:10:34 +01:00
parent 34c7322d77
commit a368cf7d51
23 changed files with 30 additions and 83 deletions

View file

@ -31,6 +31,7 @@
#include "Screen.h"
#include "WindowClientEndpoint.h"
#include "WindowManager.h"
#include <AK/Badge.h>
namespace WindowServer {
@ -414,4 +415,9 @@ void Window::set_tiled(WindowTileType tiled)
Core::EventLoop::current().post_event(*this, make<ResizeEvent>(old_rect, m_rect));
}
void Window::detach_client(Badge<ClientConnection>)
{
m_client = nullptr;
}
}