comparison src/gaimrc.c @ 1420:9be6790092dc

[gaim-migrate @ 1430] backing out the change mishan sent in. it's not working right for me for some reason and i don't feel like trying to figure out why right now. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 23 Jan 2001 12:08:21 +0000
parents 42955549cdd9
children 5c67b8794991
comparison
equal deleted inserted replaced
1419:b37ed5eb0317 1420:9be6790092dc
650 } else if (!strcmp(p->option, "blist_pos")) { 650 } else if (!strcmp(p->option, "blist_pos")) {
651 blist_pos.x = atoi(p->value[0]); 651 blist_pos.x = atoi(p->value[0]);
652 blist_pos.y = atoi(p->value[1]); 652 blist_pos.y = atoi(p->value[1]);
653 blist_pos.width = atoi(p->value[2]); 653 blist_pos.width = atoi(p->value[2]);
654 blist_pos.height = atoi(p->value[3]); 654 blist_pos.height = atoi(p->value[3]);
655 blist_pos.xoff = atoi(p->value[4]);
656 blist_pos.yoff = atoi(p->value[5]);
655 } 657 }
656 658
657 } 659 }
658 660
659 } 661 }
671 fprintf(f, "\tforeground { %d } { %d } { %d }\n", fgcolor.red, fgcolor.green, fgcolor.blue); 673 fprintf(f, "\tforeground { %d } { %d } { %d }\n", fgcolor.red, fgcolor.green, fgcolor.blue);
672 fprintf(f, "\tbackground { %d } { %d } { %d }\n", bgcolor.red, bgcolor.green, bgcolor.blue); 674 fprintf(f, "\tbackground { %d } { %d } { %d }\n", bgcolor.red, bgcolor.green, bgcolor.blue);
673 fprintf(f, "\treport_idle { %d }\n", report_idle); 675 fprintf(f, "\treport_idle { %d }\n", report_idle);
674 fprintf(f, "\tweb_browser { %d }\n", web_browser); 676 fprintf(f, "\tweb_browser { %d }\n", web_browser);
675 fprintf(f, "\tweb_command { %s }\n", web_command); 677 fprintf(f, "\tweb_command { %s }\n", web_command);
676 fprintf(f, "\tblist_pos { %d } { %d } { %d } { %d }\n", 678 fprintf(f, "\tblist_pos { %d } { %d } { %d } { %d } { %d } { %d }\n",
677 blist_pos.x, blist_pos.y, blist_pos.width, blist_pos.height); 679 blist_pos.x, blist_pos.y, blist_pos.width, blist_pos.height,
680 blist_pos.xoff, blist_pos.yoff);
678 fprintf(f, "}\n"); 681 fprintf(f, "}\n");
679 } 682 }
680 683
681 684
682 static void gaimrc_read_sounds(FILE *f) 685 static void gaimrc_read_sounds(FILE *f)