# HG changeset patch # User Luke Schierer # Date 1032751862 0 # Node ID 593567405d48d5a47d66284c99c05de5c2a97802 # Parent 785292d72aed8e779713cbc6976093be63da3eba [gaim-migrate @ 3616] after getting possitioning ot work right, robot101 causes gaim's code to not have a couple variables no longer in use. committer: Tailor Script diff -r 785292d72aed -r 593567405d48 src/gaimrc.c --- a/src/gaimrc.c Mon Sep 23 01:31:26 2002 +0000 +++ b/src/gaimrc.c Mon Sep 23 03:31:02 2002 +0000 @@ -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", diff -r 785292d72aed -r 593567405d48 src/ui.h --- a/src/ui.h Mon Sep 23 01:31:26 2002 +0000 +++ b/src/ui.h Mon Sep 23 03:31:02 2002 +0000 @@ -84,8 +84,6 @@ int y; int width; int height; - int xoff; - int yoff; }; struct window_size {