diff src/conversation.c @ 2761:367d19133917

[gaim-migrate @ 2774] decklin's patch committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 19 Nov 2001 11:14:55 +0000
parents 8ff0bd0f7347
children 477a035d81e5
line wrap: on
line diff
--- a/src/conversation.c	Mon Nov 19 10:06:59 2001 +0000
+++ b/src/conversation.c	Mon Nov 19 11:14:55 2001 +0000
@@ -509,10 +509,11 @@
 	if (!strcmp(pre_fontface, "<FONT FACE=\"\">")) {
 		g_free(pre_fontface);
 		alloc--;
-		pre_fontface = "<FONT FACE=\"Helvetica\">";
+		pre_fontface = "<FONT FACE=\"" DEFAULT_FONT_FACE "\">";
 	}
 
-	sprintf(c->fontface, "%s", newfont ? (newfont[0] ? newfont : "Helvetica") : "Helvetica");
+	sprintf(c->fontface, "%s", newfont ?
+		(newfont[0] ? newfont : DEFAULT_FONT_FACE) : DEFAULT_FONT_FACE);
 	c->hasfont = 1;
 	surround(c->entry, pre_fontface, "</FONT>");
 	gtk_widget_grab_focus(c->entry);