From c127107f51cf3082c070d1e45af8f99eafaf5e5f Mon Sep 17 00:00:00 2001 From: Paul Gardiner Date: Fri, 23 Nov 2012 09:39:12 +0000 Subject: Android: fix accidently swapped title and message in alert dialog --- android/jni/mupdf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'android') 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 -- cgit v1.2.3