changeset 2699:092c5a1ddf72

[gaim-migrate @ 2712] god damn you. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 09 Nov 2001 03:11:56 +0000
parents e80f4b4f840f
children 59b9b9bed67f
files src/buddy_chat.c src/conversation.c src/ui.h
diffstat 3 files changed, 2 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/buddy_chat.c	Fri Nov 09 01:11:36 2001 +0000
+++ b/src/buddy_chat.c	Fri Nov 09 03:11:56 2001 +0000
@@ -1327,8 +1327,6 @@
 	b->log_dialog = NULL;
 	sprintf(b->fontface, "%s", fontface);
 	b->hasfont = 0;
-	b->fontsize = fontsize;
-	b->hassize = 0;
 	b->bgcol = bgcolor;
 	b->hasbg = 0;
 	b->fgcol = fgcolor;
--- a/src/conversation.c	Fri Nov 09 01:11:36 2001 +0000
+++ b/src/conversation.c	Fri Nov 09 03:11:56 2001 +0000
@@ -841,8 +841,8 @@
 			strcpy(buf, buf2);
 		}
 
-		if ((font_options & OPT_FONT_SIZE) || c->hassize) {
-			g_snprintf(buf2, limit, "<FONT SIZE=\"%d\">%s</FONT>", c->fontsize, buf);
+		if (font_options & OPT_FONT_SIZE) {
+			g_snprintf(buf2, limit, "<FONT SIZE=\"%d\">%s</FONT>", fontsize, buf);
 			strcpy(buf, buf2);
 		}
 
@@ -2150,8 +2150,6 @@
 	c->log_dialog = NULL;
 	sprintf(c->fontface, "%s", fontface);
 	c->hasfont = 0;
-	c->fontsize = fontsize;
-	c->hassize = 0;
 	c->bgcol = bgcolor;
 	c->hasbg = 0;
 	c->fgcol = fgcolor;
--- a/src/ui.h	Fri Nov 09 01:11:36 2001 +0000
+++ b/src/ui.h	Fri Nov 09 03:11:56 2001 +0000
@@ -113,8 +113,6 @@
 	int makesound;
 	char fontface[128];
 	int hasfont;
-	int fontsize;
-	int hassize;
 	GdkColor bgcol;
 	int hasbg;
 	GdkColor fgcol;