Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv31835/src
Modified Files:
buddy_chat.c conversation.c ui.h
Log Message:
god damn you.
Index: buddy_chat.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/buddy_chat.c,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -d -r1.130 -r1.131
--- buddy_chat.c 2001/11/02 07:53:23 1.130
+++ buddy_chat.c 2001/11/09 03:11:56 1.131
@@ -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;
Index: conversation.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/conversation.c,v
retrieving revision 1.290
retrieving revision 1.291
diff -u -d -r1.290 -r1.291
--- conversation.c 2001/11/06 23:58:21 1.290
+++ conversation.c 2001/11/09 03:11:56 1.291
@@ -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;
Index: ui.h
===================================================================
RCS file: /cvsroot/gaim/gaim/src/ui.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- ui.h 2001/10/27 00:12:14 1.16
+++ ui.h 2001/11/09 03:11:56 1.17
@@ -113,8 +113,6 @@
int makesound;
char fontface[128];
int hasfont;
- int fontsize;
- int hassize;
GdkColor bgcol;
int hasbg;
GdkColor fgcol;
|