diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-23 09:29:35 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-23 11:10:52 +0100 |
commit | 8efafdfc128e8b0649e4ee3149813450c54c7f69 (patch) | |
tree | 1aa9abe59ef0fb9035c9d3d18c7812d401f22eac /Applications/IRCClient/IRCClient.h | |
parent | a70cc5ca1dc6ae0c64e734c0f234c75ab8a184dc (diff) | |
download | serenity-8efafdfc128e8b0649e4ee3149813450c54c7f69.zip |
IRCClient: Modernize Core::Object usage
Diffstat (limited to 'Applications/IRCClient/IRCClient.h')
-rw-r--r-- | Applications/IRCClient/IRCClient.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Applications/IRCClient/IRCClient.h b/Applications/IRCClient/IRCClient.h index 49d5393d1b..71dc41cea4 100644 --- a/Applications/IRCClient/IRCClient.h +++ b/Applications/IRCClient/IRCClient.h @@ -45,7 +45,6 @@ class IRCClient final : public Core::Object { friend class IRCQuery; public: - IRCClient(); virtual ~IRCClient() override; void set_server(const String& hostname, int port = 6667); @@ -114,6 +113,8 @@ public: void add_server_message(const String&, Color = Color::Black); private: + IRCClient(); + struct Message { String prefix; String command; |