mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 15:16:14 +00:00
Userland: Rename Core::Object to Core::EventReceiver
This is a more precise description of what this class actually does.
This commit is contained in:
committed by
Jelle Raaijmakers
parent
bdf696e488
commit
ddbe6bd7b4
@@ -21,8 +21,8 @@
|
||||
|
||||
namespace Core {
|
||||
|
||||
UDPServer::UDPServer(Object* parent)
|
||||
: Object(parent)
|
||||
UDPServer::UDPServer(EventReceiver* parent)
|
||||
: EventReceiver(parent)
|
||||
{
|
||||
#ifdef SOCK_NONBLOCK
|
||||
m_fd = socket(AF_INET, SOCK_DGRAM | SOCK_NONBLOCK | SOCK_CLOEXEC, 0);
|
||||
|
||||
Reference in New Issue
Block a user