Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv6561/src
Modified Files:
gaimrc.c ui.h
Log Message:
after getting possitioning ot work right, robot101 causes gaim's code to not have a couple
variables no longer in use.
Index: gaimrc.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/gaimrc.c,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -d -r1.106 -r1.107
--- gaimrc.c 10 Sep 2002 15:31:34 -0000 1.106
+++ gaimrc.c 23 Sep 2002 03:31:02 -0000 1.107
@@ -784,8 +784,6 @@
blist_pos.y = atoi(p->value[1]);
blist_pos.width = atoi(p->value[2]);
blist_pos.height = atoi(p->value[3]);
- blist_pos.xoff = atoi(p->value[4]);
- blist_pos.yoff = atoi(p->value[5]);
}
}
@@ -861,9 +859,8 @@
fprintf(f, "\treport_idle { %d }\n", report_idle);
fprintf(f, "\tweb_browser { %d }\n", web_browser);
fprintf(f, "\tweb_command { %s }\n", web_command);
- fprintf(f, "\tblist_pos { %d } { %d } { %d } { %d } { %d } { %d }\n",
- blist_pos.x, blist_pos.y, blist_pos.width, blist_pos.height,
- blist_pos.xoff, blist_pos.yoff);
+ fprintf(f, "\tblist_pos { %d } { %d } { %d } { %d }\n",
+ blist_pos.x, blist_pos.y, blist_pos.width, blist_pos.height);
fprintf(f, "\tconv_size { %d } { %d } { %d }\n",
conv_size.width, conv_size.height, conv_size.entry_height);
fprintf(f, "\tbuddy_chat_size { %d } { %d } { %d }\n",
Index: ui.h
===================================================================
RCS file: /cvsroot/gaim/gaim/src/ui.h,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- ui.h 17 Sep 2002 16:43:59 -0000 1.56
+++ ui.h 23 Sep 2002 03:31:02 -0000 1.57
@@ -84,8 +84,6 @@
int y;
int width;
int height;
- int xoff;
- int yoff;
};
struct window_size {
|