Fix Query.

Correctly include `org_kiwix_libwzim_Query.h`.
Property set the return type of setNativeQuery to void.
This commit is contained in:
Matthieu Gautier 2023-05-17 14:29:45 +02:00
parent 915866a5fe
commit 4d73e57c69
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
#include <jni.h>
#include <exception>
#include "org_kiwix_libzim_Searcher.h"
#include "org_kiwix_libzim_Query.h"
#include <utils.h>

View File

@ -37,6 +37,6 @@ public class Query
public native void dispose();
// A pointer (as a long) to a native Handle
private native long setNativeQuery(String query);
private native void setNativeQuery(String query);
private long nativeHandle;
}