diff options
author | Perberos <[email protected]> | 2011-11-09 18:44:56 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-09 18:44:56 -0300 |
commit | da7bb154d27d3b872867223a5df60df8f5fb6e7d (patch) | |
tree | c1a40fbb481956cf2fda2263bf78389622eba0a5 /backend/djvu/djvu-links.c | |
parent | 342e9e9bf91625bf6f0102fb7bbc652dea222064 (diff) | |
download | atril-da7bb154d27d3b872867223a5df60df8f5fb6e7d.tar.bz2 atril-da7bb154d27d3b872867223a5df60df8f5fb6e7d.tar.xz |
renaming evince to atril
Diffstat (limited to 'backend/djvu/djvu-links.c')
-rw-r--r-- | backend/djvu/djvu-links.c | 4 |
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; |