mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Added "Closed query with nick" message.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1668 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d1d13a4b36
commit
2a44f98a51
3 changed files with 9 additions and 3 deletions
|
|
@ -61,9 +61,10 @@ static void signal_query_created(QUERY_REC *query, gpointer automatic)
|
|||
if (window_item_window(query) == NULL) {
|
||||
window_item_create((WI_ITEM_REC *) query,
|
||||
GPOINTER_TO_INT(automatic));
|
||||
printformat(query->server, query->name, MSGLEVEL_CLIENTNOTICE,
|
||||
TXT_QUERY_STARTED, query->name);
|
||||
}
|
||||
|
||||
printformat(query->server, query->name, MSGLEVEL_CLIENTNOTICE,
|
||||
TXT_QUERY_START, query->name);
|
||||
}
|
||||
|
||||
static void signal_query_created_curwin(QUERY_REC *query)
|
||||
|
|
@ -81,6 +82,9 @@ static void signal_query_destroyed(QUERY_REC *query)
|
|||
|
||||
window = window_item_window((WI_ITEM_REC *) query);
|
||||
if (window != NULL) {
|
||||
printformat(query->server, query->name, MSGLEVEL_CLIENTNOTICE,
|
||||
TXT_QUERY_STOP, query->name);
|
||||
|
||||
window_item_destroy((WI_ITEM_REC *) query);
|
||||
|
||||
if (!query->unwanted)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue