mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 12:27:35 +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:
parent
bdf696e488
commit
ddbe6bd7b4
128 changed files with 399 additions and 401 deletions
|
@ -9,12 +9,12 @@
|
|||
|
||||
#include <AK/Function.h>
|
||||
#include <AK/Stream.h>
|
||||
#include <LibCore/EventReceiver.h>
|
||||
#include <LibCore/Forward.h>
|
||||
#include <LibCore/Object.h>
|
||||
|
||||
namespace Core {
|
||||
|
||||
class NetworkJob : public Object {
|
||||
class NetworkJob : public EventReceiver {
|
||||
C_OBJECT_ABSTRACT(NetworkJob)
|
||||
public:
|
||||
enum class Error {
|
||||
|
@ -70,5 +70,5 @@ char const* to_string(NetworkJob::Error);
|
|||
}
|
||||
|
||||
template<>
|
||||
struct AK::Formatter<Core::NetworkJob> : Formatter<Core::Object> {
|
||||
struct AK::Formatter<Core::NetworkJob> : Formatter<Core::EventReceiver> {
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue