summaryrefslogtreecommitdiff
path: root/fitz/node_misc2.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2005-04-04 08:58:34 +0200
committerTor Andersson <tor@ghostscript.com>2005-04-04 08:58:34 +0200
commit0ba6f06f3e2cebf7cf519ce38dc8fdfe34734603 (patch)
treee70c5004059dbc4d8fdd245832e441b930fd86cc /fitz/node_misc2.c
parentfb2db10b9760e7692ef16b4cf70bfae188b836af (diff)
downloadmupdf-0ba6f06f3e2cebf7cf519ce38dc8fdfe34734603.tar.xz
rename rect fields to x0 y0 x1 y1
Diffstat (limited to 'fitz/node_misc2.c')
-rw-r--r--fitz/node_misc2.c8
1 files changed, 4 insertions, 4 deletions
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);
}