summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2013-01-30 16:54:13 +0100
committerTor Andersson <tor.andersson@artifex.com>2013-01-30 16:57:53 +0100
commit151188419c585e60a304e8168909eb449d8ba7fe (patch)
tree5ddcce5d361fd19a3407d5a31d103eae412e38ab /doc
parent29f7d13d37022303c5d93ddd2942f6b87959f432 (diff)
downloadmupdf-151188419c585e60a304e8168909eb449d8ba7fe.tar.xz
Rename fz_irect back to fz_bbox.
Diffstat (limited to 'doc')
-rw-r--r--doc/example.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/example.c b/doc/example.c
index d1e4798f..ef2c658f 100644
--- a/doc/example.c
+++ b/doc/example.c
@@ -50,7 +50,7 @@ render(char *filename, int pagenumber, int zoom, int rotation)
// space has the origin at the top left corner and the x axis
// extends to the right and the y axis extends down.
- fz_irect bbox = fz_round_rect(bounds);
+ fz_bbox bbox = fz_round_rect(bounds);
fz_pixmap *pix = fz_new_pixmap_with_bbox(ctx, fz_device_rgb, bbox);
fz_clear_pixmap_with_value(ctx, pix, 0xff);