summaryrefslogtreecommitdiff
path: root/apps/mozilla
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@hotmail.com>2009-08-23 17:25:04 +0200
committerSebastian Rasmussen <sebras@hotmail.com>2009-08-23 17:25:04 +0200
commitc2c6b06cc5ada8c52a6a7624331eece5ac5fd568 (patch)
tree4451ee39a3d1bc40b8f35a9b29e088398517829f /apps/mozilla
parent9a36f6887c631f2e638805f1e91ee2be90ba955e (diff)
downloadmupdf-c2c6b06cc5ada8c52a6a7624331eece5ac5fd568.tar.xz
Add type to links so applications can determine how to handle them.
Diffstat (limited to 'apps/mozilla')
-rw-r--r--apps/mozilla/moz_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/mozilla/moz_main.c b/apps/mozilla/moz_main.c
index ba55ba90..30afc9d9 100644
--- a/apps/mozilla/moz_main.c
+++ b/apps/mozilla/moz_main.c
@@ -350,9 +350,9 @@ void pdfmoz_onmouse(pdfmoz_t *moz, int x, int y, int click)
SetCursor(moz->hand);
if (click)
{
- if (fz_isstring(link->dest))
+ if (link->kind == PDF_LURI)
pdfmoz_gotouri(moz, link->dest);
- if (fz_isindirect(link->dest))
+ else if (link->kind == PDF_LGOTO)
pdfmoz_gotopage(moz, link->dest);
return;
}