summaryrefslogtreecommitdiff
path: root/include/mupdf/fitz/annotation.h
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2017-06-08 23:22:44 +0800
committerSebastian Rasmussen <sebras@gmail.com>2017-09-20 15:56:02 +0200
commit9313707d515833b05c3aecb5142f5b2ccd3ddcb3 (patch)
tree5993ebb5b1f36d843396d665151627c4d070bf7d /include/mupdf/fitz/annotation.h
parent223403d2f7ba9c3cf6c727bdb81523bbe60a9179 (diff)
downloadmupdf-9313707d515833b05c3aecb5142f5b2ccd3ddcb3.tar.xz
Remove comment markers about interfaces not throwing exceptions.
Diffstat (limited to 'include/mupdf/fitz/annotation.h')
-rw-r--r--include/mupdf/fitz/annotation.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/mupdf/fitz/annotation.h b/include/mupdf/fitz/annotation.h
index 0521be77..8f7385f6 100644
--- a/include/mupdf/fitz/annotation.h
+++ b/include/mupdf/fitz/annotation.h
@@ -27,22 +27,16 @@ void fz_drop_annot(fz_context *ctx, fz_annot *annot);
/*
fz_first_annot: Return a pointer to the first annotation on a page.
-
- Does not throw exceptions.
*/
fz_annot *fz_first_annot(fz_context *ctx, fz_page *page);
/*
fz_next_annot: Return a pointer to the next annotation on a page.
-
- Does not throw exceptions.
*/
fz_annot *fz_next_annot(fz_context *ctx, fz_annot *annot);
/*
fz_bound_annot: Return the bounding rectangle of the annotation.
-
- Does not throw exceptions.
*/
fz_rect *fz_bound_annot(fz_context *ctx, fz_annot *annot, fz_rect *rect);