diff options
author | Robin Watts <robin.watts@artifex.com> | 2015-03-25 15:04:33 +0000 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2015-03-25 15:35:44 +0000 |
commit | 2f1894e96582b75ed0b3b7bcef6dc7358991fb93 (patch) | |
tree | 211954d5e0a470fd19113409f28c03cd86e697ee | |
parent | faff7d215d54359083fa8dccf5c9d08a29bb484b (diff) | |
download | mupdf-2f1894e96582b75ed0b3b7bcef6dc7358991fb93.tar.xz |
Update Android code to use new PDF_NAME formulation.
-rw-r--r-- | platform/android/jni/mupdf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/jni/mupdf.c b/platform/android/jni/mupdf.c index 98b88373..b1ff7115 100644 --- a/platform/android/jni/mupdf.c +++ b/platform/android/jni/mupdf.c @@ -2339,7 +2339,7 @@ JNI_FN(MuPDFCore_getFocusedWidgetSignatureState)(JNIEnv * env, jobject thiz) if (!pdf_signatures_supported()) return Signature_NoSupport; - return pdf_dict_gets(ctx, ((pdf_annot *)focus)->obj, "V") ? Signature_Signed : Signature_Unsigned; + return pdf_dict_get(ctx, ((pdf_annot *)focus)->obj, PDF_NAME_V) ? Signature_Signed : Signature_Unsigned; } JNIEXPORT jstring JNICALL |