Mercurial > pidgin.yaz
changeset 3775:8fcebfa9f357
[gaim-migrate @ 3915]
I stepped on faceprint's clue stick.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Mon, 21 Oct 2002 17:43:33 +0000 |
parents | 643d1bdc76a9 |
children | 21d296405cfd |
files | src/conversation.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/conversation.c Mon Oct 21 17:13:01 2002 +0000 +++ b/src/conversation.c Mon Oct 21 17:43:33 2002 +0000 @@ -2708,11 +2708,11 @@ buf = g_malloc(len+1); g_snprintf(buf, len+1, win->title); if(typing_state == TYPING) { - buf2 = g_strconcat(buf,_(" [TYPING]")); + buf2 = g_strconcat(buf,_(" [TYPING]"), NULL); g_free(buf); buf = buf2; } else if(typing_state == TYPED) { - buf2 = g_strconcat(buf,_(" [TYPED]")); + buf2 = g_strconcat(buf,_(" [TYPED]"), NULL); g_free(buf); buf = buf2; }