diff options
author | Paul Gardiner <paulg.artifex@glidos.net> | 2012-11-23 09:39:12 +0000 |
---|---|---|
committer | Paul Gardiner <paulg.artifex@glidos.net> | 2012-11-27 10:40:25 +0000 |
commit | c127107f51cf3082c070d1e45af8f99eafaf5e5f (patch) | |
tree | 63be7a6b16fdf330a1de1afa92f5c896e208bc51 | |
parent | 60a541fce201f6c195fb4131f7a45c2b24243eaf (diff) | |
download | mupdf-c127107f51cf3082c070d1e45af8f99eafaf5e5f.tar.xz |
Android: fix accidently swapped title and message in alert dialog
-rw-r--r-- | android/jni/mupdf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/jni/mupdf.c b/android/jni/mupdf.c index 913583eb..a89b773c 100644 --- a/android/jni/mupdf.c +++ b/android/jni/mupdf.c @@ -1318,7 +1318,7 @@ Java_com_artifex_mupdf_MuPDFCore_waitForAlertInternal(JNIEnv * env, jobject thiz if (message == NULL) return NULL; - return (*env)->NewObject(env, alertClass, ctor, title, alert.icon_type, alert.button_group_type, message, alert.button_pressed); + return (*env)->NewObject(env, alertClass, ctor, message, alert.icon_type, alert.button_group_type, title, alert.button_pressed); } JNIEXPORT void JNICALL |