summaryrefslogtreecommitdiff
path: root/Applications/IRCClient/IRCQuery.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-09-07 18:52:47 +0200
committerAndreas Kling <kling@serenityos.org>2020-09-07 20:49:35 +0200
commitc460f4a3cbe891225b528319f0a53dea7685d55c (patch)
treebb30b4b5a7e7228c5a956134cc29c9dd6569fcd5 /Applications/IRCClient/IRCQuery.h
parent3a4a9d4c6b8e1e1defcfaec2c1dbb4eab0aec1f3 (diff)
downloadserenity-c460f4a3cbe891225b528319f0a53dea7685d55c.zip
IRCClient: Add the "/me" command to send CTCP ACTION emotes :^)
You can now express your feelings and actions with our IRC client by using the /me command.
Diffstat (limited to 'Applications/IRCClient/IRCQuery.h')
-rw-r--r--Applications/IRCClient/IRCQuery.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Applications/IRCClient/IRCQuery.h b/Applications/IRCClient/IRCQuery.h
index 31c622edcc..f06b757b30 100644
--- a/Applications/IRCClient/IRCQuery.h
+++ b/Applications/IRCClient/IRCQuery.h
@@ -43,6 +43,7 @@ public:
String name() const { return m_name; }
void add_message(char prefix, const String& name, const String& text, Color = Color::Black);
+ void add_message(const String& text, Color = Color::Black);
void dump() const;