From: <sa...@us...> - 2006-08-28 20:43:17
|
Revision: 17071 Author: sadrul Date: 2006-08-28 13:43:12 -0700 (Mon, 28 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=17071&view=rev Log Message: ----------- meify Modified Paths: -------------- trunk/console/gntconv.c Modified: trunk/console/gntconv.c =================================================================== --- trunk/console/gntconv.c 2006-08-28 20:27:03 UTC (rev 17070) +++ trunk/console/gntconv.c 2006-08-28 20:43:12 UTC (rev 17071) @@ -245,9 +245,16 @@ gaim_prefs_get_bool("/gaim/gnt/conversations/timestamps")) gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(ggconv->tv), gaim_utf8_strftime("(%H:%M:%S) ", localtime(&mtime)), GNT_TEXT_FLAG_DIM); + if (who && *who && (flags & (GAIM_MESSAGE_SEND | GAIM_MESSAGE_RECV))) { - char * name = g_strdup_printf("%s: ", who); + char * name = NULL; + + if (gaim_message_meify((char*)message, -1)) + name = g_strdup_printf("*** %s ", who); + else + name = g_strdup_printf("%s: ", who); + gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(ggconv->tv), name, GNT_TEXT_FLAG_BOLD); g_free(name); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |