summaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2023-01-02 13:50:58 +0100
committerSébastien Helleu <flashcode@flashtux.org>2023-01-02 13:50:58 +0100
commitc739026c873e16d10e5fac6e979b4774b4c7aa88 (patch)
tree2b453fad88f1cfed8ee04b6891787b616943a01e /src/plugins
parent33bba784c3c54715de6d68c7559890d5f1ca181c (diff)
downloadweechat-c739026c873e16d10e5fac6e979b4774b4c7aa88.zip
irc: replace "private window" by "private buffer" in comments
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/irc/irc-command.c4
-rw-r--r--src/plugins/irc/irc-protocol.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c
index 473a636c0..163e4ff67 100644
--- a/src/plugins/irc/irc-command.c
+++ b/src/plugins/irc/irc-command.c
@@ -4238,7 +4238,7 @@ irc_command_part_channel (struct t_irc_server *server, const char *channel_name,
}
/*
- * Callback for command "/part": leaves a channel or close a private window.
+ * Callback for command "/part": leaves a channel or close a private buffer.
*/
IRC_COMMAND_CALLBACK(part)
@@ -4442,7 +4442,7 @@ IRC_COMMAND_CALLBACK(query)
continue;
}
- /* create private window if not already opened */
+ /* create private buffer if not already opened */
ptr_channel = irc_channel_search (ptr_server, nicks[i]);
if (!ptr_channel)
{
diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c
index f80a6ad24..338b462c3 100644
--- a/src/plugins/irc/irc-protocol.c
+++ b/src/plugins/irc/irc-protocol.c
@@ -2063,7 +2063,7 @@ IRC_PROTOCOL_CALLBACK(nick)
switch (ptr_channel->type)
{
case IRC_CHANNEL_TYPE_PRIVATE:
- /* rename private window if this is with "old nick" */
+ /* rename private buffer if this is with "old nick" */
if ((irc_server_strcasecmp (server,
ptr_channel->name, nick) == 0)
&& !irc_channel_search (server, params[0]))