mirror of
https://github.com/RGBCube/serenity
synced 2025-07-02 22:42:08 +00:00
LibGUI: Fix typo in ConnectionToWindowManagerServer
This commit is contained in:
parent
524f4be5af
commit
6c202ee4a9
12 changed files with 41 additions and 41 deletions
|
@ -14,7 +14,7 @@
|
|||
#include <LibCore/MimeData.h>
|
||||
#include <LibGUI/Action.h>
|
||||
#include <LibGUI/Application.h>
|
||||
#include <LibGUI/ConnectionToWindowMangerServer.h>
|
||||
#include <LibGUI/ConnectionToWindowManagerServer.h>
|
||||
#include <LibGUI/ConnectionToWindowServer.h>
|
||||
#include <LibGUI/Desktop.h>
|
||||
#include <LibGUI/Event.h>
|
||||
|
@ -320,8 +320,8 @@ void Window::set_window_type(WindowType window_type)
|
|||
|
||||
void Window::make_window_manager(unsigned event_mask)
|
||||
{
|
||||
GUI::ConnectionToWindowMangerServer::the().async_set_event_mask(event_mask);
|
||||
GUI::ConnectionToWindowMangerServer::the().async_set_manager_window(m_window_id);
|
||||
GUI::ConnectionToWindowManagerServer::the().async_set_event_mask(event_mask);
|
||||
GUI::ConnectionToWindowManagerServer::the().async_set_manager_window(m_window_id);
|
||||
}
|
||||
|
||||
bool Window::are_cursors_the_same(AK::Variant<Gfx::StandardCursor, NonnullRefPtr<Gfx::Bitmap>> const& left, AK::Variant<Gfx::StandardCursor, NonnullRefPtr<Gfx::Bitmap>> const& right) const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue