comparison src/log.c @ 10735:a0edd89ddb83

[gaim-migrate @ 12337] (20:07:37) rlaager: In the logs, /me actions are displayed in a purplish color instead of the color shown in the conversation window. Is this by design? (20:09:56) marv: rlaager: i think its a bug and i thought someone was going to fix that (20:10:07) rlaager: okay, well it's a simple fix (20:10:09) rlaager: I'll submit a patch. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 26 Mar 2005 05:23:44 +0000
parents c4cb90065e1d
children 5c5120837bab
comparison
equal deleted inserted replaced
10734:8b2c81d9b271 10735:a0edd89ddb83
607 fprintf(data->file, _("<font color=\"#16569E\"><font size=\"2\">(%s)</font> <b>%s &lt;AUTO-REPLY&gt;:</b></font> %s<br/>\n"), date, from, msg_fixed); 607 fprintf(data->file, _("<font color=\"#16569E\"><font size=\"2\">(%s)</font> <b>%s &lt;AUTO-REPLY&gt;:</b></font> %s<br/>\n"), date, from, msg_fixed);
608 else if (type & GAIM_MESSAGE_RECV) 608 else if (type & GAIM_MESSAGE_RECV)
609 fprintf(data->file, _("<font color=\"#A82F2F\"><font size=\"2\">(%s)</font> <b>%s &lt;AUTO-REPLY&gt;:</b></font> %s<br/>\n"), date, from, msg_fixed); 609 fprintf(data->file, _("<font color=\"#A82F2F\"><font size=\"2\">(%s)</font> <b>%s &lt;AUTO-REPLY&gt;:</b></font> %s<br/>\n"), date, from, msg_fixed);
610 } else if (type & GAIM_MESSAGE_RECV) { 610 } else if (type & GAIM_MESSAGE_RECV) {
611 if(gaim_message_meify(msg_fixed, -1)) 611 if(gaim_message_meify(msg_fixed, -1))
612 fprintf(data->file, "<font color=\"#6C2585\"><font size=\"2\">(%s)</font> <b>***%s</b></font> %s<br/>\n", 612 fprintf(data->file, "<font color=\"#062585\"><font size=\"2\">(%s)</font> <b>***%s</b></font> %s<br/>\n",
613 date, from, msg_fixed); 613 date, from, msg_fixed);
614 else 614 else
615 fprintf(data->file, "<font color=\"#A82F2F\"><font size=\"2\">(%s)</font> <b>%s:</b></font> %s<br/>\n", 615 fprintf(data->file, "<font color=\"#A82F2F\"><font size=\"2\">(%s)</font> <b>%s:</b></font> %s<br/>\n",
616 date, from, msg_fixed); 616 date, from, msg_fixed);
617 } else if (type & GAIM_MESSAGE_SEND) { 617 } else if (type & GAIM_MESSAGE_SEND) {
618 if(gaim_message_meify(msg_fixed, -1)) 618 if(gaim_message_meify(msg_fixed, -1))
619 fprintf(data->file, "<font color=\"#6C2585\"><font size=\"2\">(%s)</font> <b>***%s</b></font> %s<br/>\n", 619 fprintf(data->file, "<font color=\"#062585\"><font size=\"2\">(%s)</font> <b>***%s</b></font> %s<br/>\n",
620 date, from, msg_fixed); 620 date, from, msg_fixed);
621 else 621 else
622 fprintf(data->file, "<font color=\"#16569E\"><font size=\"2\">(%s)</font> <b>%s:</b></font> %s<br/>\n", 622 fprintf(data->file, "<font color=\"#16569E\"><font size=\"2\">(%s)</font> <b>%s:</b></font> %s<br/>\n",
623 date, from, msg_fixed); 623 date, from, msg_fixed);
624 } 624 }