diff src/gaimrc.c @ 1413:42955549cdd9

[gaim-migrate @ 1423] patch from mishan to save window positions correctly committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Thu, 18 Jan 2001 20:31:51 +0000
parents cb84b5c6d9ab
children 9be6790092dc
line wrap: on
line diff
--- a/src/gaimrc.c	Thu Jan 18 19:54:13 2001 +0000
+++ b/src/gaimrc.c	Thu Jan 18 20:31:51 2001 +0000
@@ -652,8 +652,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]);
 		}
 
 	}
@@ -675,9 +673,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, "}\n");
 }
 
@@ -785,8 +782,6 @@
 		blist_pos.height = 0;
 		blist_pos.x = 0;
 		blist_pos.y = 0;
-		blist_pos.xoff = 0;
-		blist_pos.yoff = 0;
 	}
 }