# HG changeset patch # User Eric Warmenhoven # Date 1005275516 0 # Node ID 092c5a1ddf72094a81018fe1e33b3e64863adec3 # Parent e80f4b4f840f572e809c20b7134179046a10c74c [gaim-migrate @ 2712] god damn you. committer: Tailor Script diff -r e80f4b4f840f -r 092c5a1ddf72 src/buddy_chat.c --- 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; diff -r e80f4b4f840f -r 092c5a1ddf72 src/conversation.c --- 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, "%s", c->fontsize, buf); + if (font_options & OPT_FONT_SIZE) { + g_snprintf(buf2, limit, "%s", 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; diff -r e80f4b4f840f -r 092c5a1ddf72 src/ui.h --- 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;