pidgin: ad54253e: Patch from Kyle Turman to show the alias...

sadrul at pidgin.im sadrul at pidgin.im
Fri Mar 7 18:16:14 EST 2008


-----------------------------------------------------------------
Revision: ad54253e8a27e07bd353bd4353692d0f765b5b98
Ancestor: 6ff3e48f37ce327ca03e8d3394cac62e40b6fe05
Author: sadrul at pidgin.im
Date: 2008-03-07T22:03:24
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/ad54253e8a27e07bd353bd4353692d0f765b5b98

Modified files:
        COPYRIGHT finch/gntconv.c

ChangeLog: 

Patch from Kyle Turman to show the alias when available in the typing notification. Closes #4957.

-------------- next part --------------
============================================================
--- COPYRIGHT	9086c8efe7070ec9bdc35395616bf85069fef263
+++ COPYRIGHT	1e8f7a315fb266683a1fed4180c9fe3ac762211f
@@ -403,6 +403,7 @@ Brad Turcotte
 Tom Tromey
 Todd Troxell
 Brad Turcotte
+Kyle Turman
 Junichi Uekawa
 Igor Vlasenko
 István Váradi
============================================================
--- finch/gntconv.c	e5d2103e8056ee41a5a15cb84b7d2874805fe8e3
+++ finch/gntconv.c	7db0e89190623892eeed92ffa11408cc8c8de667
@@ -293,7 +293,7 @@ update_buddy_typing(PurpleAccount *accou
 		g_free(str);
 
 		scroll = gnt_text_view_get_lines_below(GNT_TEXT_VIEW(ggc->tv));
-		str = g_strdup_printf(_("\n%s is typing..."), purple_conversation_get_name(conv));
+		str = g_strdup_printf(_("\n%s is typing..."), purple_conversation_get_title(conv));
 		/* Updating is a little buggy. So just remove and add a new one */
 		gnt_text_view_tag_change(GNT_TEXT_VIEW(ggc->tv), "typing", NULL, TRUE);
 		gnt_text_view_append_text_with_tag(GNT_TEXT_VIEW(ggc->tv),
@@ -879,7 +879,7 @@ finch_write_common(PurpleConversation *c
 
 	if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_IM &&
 			purple_conv_im_get_typing_state(PURPLE_CONV_IM(conv)) == PURPLE_TYPING) {
-		strip = g_strdup_printf(_("\n%s is typing..."), purple_conversation_get_name(conv));
+		strip = g_strdup_printf(_("\n%s is typing..."), purple_conversation_get_title(conv));
 		gnt_text_view_append_text_with_tag(GNT_TEXT_VIEW(ggconv->tv),
 					strip, GNT_TEXT_FLAG_DIM, "typing");
 		g_free(strip);


More information about the Commits mailing list