diff options
author | Timo Sirainen <cras@irssi.org> | 2001-01-07 19:42:59 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-01-07 19:42:59 +0000 |
commit | 1de2aade402c17e2049432acf7d93edbcc78482d (patch) | |
tree | 9f7a9b4e2335137916ae858185259cec4668201d /src/fe-text/mainwindows.c | |
parent | e46e2b5e0939a39059258e7302401775203063f1 (diff) | |
download | irssi-1de2aade402c17e2049432acf7d93edbcc78482d.zip |
In core/module-formats.h: IRCTXT_ -> TXT_
Added "message irc ctcp" signal to print CTCPs
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1094 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text/mainwindows.c')
-rw-r--r-- | src/fe-text/mainwindows.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fe-text/mainwindows.c b/src/fe-text/mainwindows.c index 81d08707..57d3bc24 100644 --- a/src/fe-text/mainwindows.c +++ b/src/fe-text/mainwindows.c @@ -478,7 +478,7 @@ static void cmd_window_grow(const char *data) window->first_line -= count; shrink_win->last_line -= count; } else { - printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, IRCTXT_WINDOW_TOO_SMALL); + printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, TXT_WINDOW_TOO_SMALL); return; } } @@ -496,7 +496,7 @@ static void cmd_window_shrink(const char *data) window = WINDOW_GUI(active_win)->parent; if (window->lines-count < WINDOW_MIN_SIZE) { - printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, IRCTXT_WINDOW_TOO_SMALL); + printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, TXT_WINDOW_TOO_SMALL); return; } @@ -579,7 +579,7 @@ static void cmd_window_hide(const char *data) WINDOW_REC *window; if (mainwindows->next == NULL) { - printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, IRCTXT_CANT_HIDE_LAST); + printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, TXT_CANT_HIDE_LAST); return; } |