summaryrefslogtreecommitdiff
path: root/backend/djvu/djvu-links.c
diff options
context:
space:
mode:
Diffstat (limited to 'backend/djvu/djvu-links.c')
-rw-r--r--backend/djvu/djvu-links.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/djvu/djvu-links.c b/backend/djvu/djvu-links.c
index d13af0be..c5e72870 100644
--- a/backend/djvu/djvu-links.c
+++ b/backend/djvu/djvu-links.c
@@ -233,7 +233,7 @@ get_djvu_hyperlink_area (ddjvu_pageinfo_t *page_info,
if ((miniexp_car (iter) == miniexp_symbol ("rect") || miniexp_car (iter) == miniexp_symbol ("oval"))
&& miniexp_length (iter) == 5) {
- /* FIXME: get bounding box for (oval) since Evince doesn't support shaped links */
+ /* FIXME: get bounding box for (oval) since Atril doesn't support shaped links */
int minx, miny, width, height;
iter = miniexp_cdr (iter);
@@ -252,7 +252,7 @@ get_djvu_hyperlink_area (ddjvu_pageinfo_t *page_info,
} else if (miniexp_car (iter) == miniexp_symbol ("poly")
&& miniexp_length (iter) >= 5 && miniexp_length (iter) % 2 == 1) {
- /* FIXME: get bounding box since Evince doesn't support shaped links */
+ /* FIXME: get bounding box since Atril doesn't support shaped links */
int minx = G_MAXINT, miny = G_MAXINT;
int maxx = G_MININT, maxy = G_MININT;