From 0ba6f06f3e2cebf7cf519ce38dc8fdfe34734603 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 4 Apr 2005 08:58:34 +0200 Subject: rename rect fields to x0 y0 x1 y1 --- fitz/node_misc2.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'fitz/node_misc2.c') diff --git a/fitz/node_misc2.c b/fitz/node_misc2.c index cd4595f4..5382273e 100644 --- a/fitz/node_misc2.c +++ b/fitz/node_misc2.c @@ -297,10 +297,10 @@ fz_rect fz_boundimagenode(fz_imagenode *node, fz_matrix ctm) { fz_rect bbox; - bbox.min.x = 0; - bbox.min.y = 0; - bbox.max.x = 1; - bbox.max.y = 1; + bbox.x0 = 0; + bbox.y0 = 0; + bbox.x1 = 1; + bbox.y1 = 1; return fz_transformaabb(ctm, bbox); } -- cgit v1.2.3