summaryrefslogtreecommitdiff
path: root/fitz/res_pixmap.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2010-04-11 18:54:28 +0200
committerTor Andersson <tor@ghostscript.com>2010-04-11 18:54:28 +0200
commitb1d837f84cbbaac4bf8362d7a2ca7dd0e4b7f8c1 (patch)
treebac1eaa2a4579d21702b82daa2d2ee45f7db6171 /fitz/res_pixmap.c
parent57d53e37c296774cb4170aae6e771efc72931919 (diff)
downloadmupdf-b1d837f84cbbaac4bf8362d7a2ca7dd0e4b7f8c1.tar.xz
Rename fz_irect to fz_bbox.
Diffstat (limited to 'fitz/res_pixmap.c')
-rw-r--r--fitz/res_pixmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/res_pixmap.c b/fitz/res_pixmap.c
index dd42fb31..79900ed1 100644
--- a/fitz/res_pixmap.c
+++ b/fitz/res_pixmap.c
@@ -26,7 +26,7 @@ fz_newpixmap(fz_colorspace *colorspace, int x, int y, int w, int h)
}
fz_pixmap *
-fz_newpixmapwithrect(fz_colorspace *colorspace, fz_irect r)
+fz_newpixmapwithrect(fz_colorspace *colorspace, fz_bbox r)
{
return fz_newpixmap(colorspace, r.x0, r.y0, r.x1 - r.x0, r.y1 - r.y0);
}