summaryrefslogtreecommitdiff
path: root/apps
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
parent9a36f6887c631f2e638805f1e91ee2be90ba955e (diff)
downloadmupdf-c2c6b06cc5ada8c52a6a7624331eece5ac5fd568.tar.xz
Add type to links so applications can determine how to handle them.
Diffstat (limited to 'apps')
-rw-r--r--apps/common/pdfapp.c4
-rw-r--r--apps/mozilla/moz_main.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/common/pdfapp.c b/apps/common/pdfapp.c
index bfe09546..5aeb699c 100644
--- a/apps/common/pdfapp.c
+++ b/apps/common/pdfapp.c
@@ -543,9 +543,9 @@ void pdfapp_onmouse(pdfapp_t *app, int x, int y, int btn, int modifiers, int sta
wincursor(app, HAND);
if (btn == 1 && state == 1)
{
- if (fz_isstring(link->dest))
+ if (link->kind == PDF_LURI)
pdfapp_gotouri(app, link->dest);
- if (fz_isindirect(link->dest))
+ else if (link->kind == PDF_LGOTO)
pdfapp_gotopage(app, link->dest);
return;
}
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;
}