diff options
Diffstat (limited to 'platform')
-rw-r--r-- | platform/android/jni/Core.mk | 1 | ||||
-rw-r--r-- | platform/win32/libmupdf.vcproj | 4 | ||||
-rw-r--r-- | platform/x11/pdfapp.c | 2 |
3 files changed, 1 insertions, 6 deletions
diff --git a/platform/android/jni/Core.mk b/platform/android/jni/Core.mk index 1dc155a2..4ce73b77 100644 --- a/platform/android/jni/Core.mk +++ b/platform/android/jni/Core.mk @@ -65,7 +65,6 @@ LOCAL_SRC_FILES := \ $(wildcard $(MY_ROOT)/source/html/*.c) LOCAL_SRC_FILES += \ $(MY_ROOT)/source/pdf/js/pdf-js.c \ - $(MY_ROOT)/source/pdf/js/pdf-jsimp-mu.c ifdef SUPPORT_GPROOF LOCAL_SHARED_LIBRARIES := gsso diff --git a/platform/win32/libmupdf.vcproj b/platform/win32/libmupdf.vcproj index a5fc9f2d..d9ae31e1 100644 --- a/platform/win32/libmupdf.vcproj +++ b/platform/win32/libmupdf.vcproj @@ -1266,10 +1266,6 @@ > </File> <File - RelativePath="..\..\source\pdf\js\pdf-jsimp-mu.c" - > - </File> - <File RelativePath="..\..\source\pdf\js\pdf-util.js" > </File> diff --git a/platform/x11/pdfapp.c b/platform/x11/pdfapp.c index 82c711dc..491167b2 100644 --- a/platform/x11/pdfapp.c +++ b/platform/x11/pdfapp.c @@ -173,7 +173,7 @@ static void event_cb(fz_context *ctx, pdf_document *doc, pdf_doc_event *event, v case PDF_DOCUMENT_EVENT_EXEC_MENU_ITEM: { - char *item = pdf_access_exec_menu_item_event(ctx, event); + const char *item = pdf_access_exec_menu_item_event(ctx, event); if (!strcmp(item, "Print")) winprint(app); |