comparison src/gaimrc.c @ 3541:593567405d48

[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 <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 23 Sep 2002 03:31:02 +0000
parents 4b204c262376
children e120097bbd72
comparison
equal deleted inserted replaced
3540:785292d72aed 3541:593567405d48
782 } else if (!strcmp(p->option, "blist_pos")) { 782 } else if (!strcmp(p->option, "blist_pos")) {
783 blist_pos.x = atoi(p->value[0]); 783 blist_pos.x = atoi(p->value[0]);
784 blist_pos.y = atoi(p->value[1]); 784 blist_pos.y = atoi(p->value[1]);
785 blist_pos.width = atoi(p->value[2]); 785 blist_pos.width = atoi(p->value[2]);
786 blist_pos.height = atoi(p->value[3]); 786 blist_pos.height = atoi(p->value[3]);
787 blist_pos.xoff = atoi(p->value[4]);
788 blist_pos.yoff = atoi(p->value[5]);
789 } 787 }
790 788
791 } 789 }
792 790
793 /* this is where we do bugs and compatibility stuff */ 791 /* this is where we do bugs and compatibility stuff */
859 fprintf(f, "\tforeground { %d } { %d } { %d }\n", fgcolor.red, fgcolor.green, fgcolor.blue); 857 fprintf(f, "\tforeground { %d } { %d } { %d }\n", fgcolor.red, fgcolor.green, fgcolor.blue);
860 fprintf(f, "\tbackground { %d } { %d } { %d }\n", bgcolor.red, bgcolor.green, bgcolor.blue); 858 fprintf(f, "\tbackground { %d } { %d } { %d }\n", bgcolor.red, bgcolor.green, bgcolor.blue);
861 fprintf(f, "\treport_idle { %d }\n", report_idle); 859 fprintf(f, "\treport_idle { %d }\n", report_idle);
862 fprintf(f, "\tweb_browser { %d }\n", web_browser); 860 fprintf(f, "\tweb_browser { %d }\n", web_browser);
863 fprintf(f, "\tweb_command { %s }\n", web_command); 861 fprintf(f, "\tweb_command { %s }\n", web_command);
864 fprintf(f, "\tblist_pos { %d } { %d } { %d } { %d } { %d } { %d }\n", 862 fprintf(f, "\tblist_pos { %d } { %d } { %d } { %d }\n",
865 blist_pos.x, blist_pos.y, blist_pos.width, blist_pos.height, 863 blist_pos.x, blist_pos.y, blist_pos.width, blist_pos.height);
866 blist_pos.xoff, blist_pos.yoff);
867 fprintf(f, "\tconv_size { %d } { %d } { %d }\n", 864 fprintf(f, "\tconv_size { %d } { %d } { %d }\n",
868 conv_size.width, conv_size.height, conv_size.entry_height); 865 conv_size.width, conv_size.height, conv_size.entry_height);
869 fprintf(f, "\tbuddy_chat_size { %d } { %d } { %d }\n", 866 fprintf(f, "\tbuddy_chat_size { %d } { %d } { %d }\n",
870 buddy_chat_size.width, buddy_chat_size.height, buddy_chat_size.entry_height); 867 buddy_chat_size.width, buddy_chat_size.height, buddy_chat_size.entry_height);
871 868