mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-29 10:26:36 +01:00
add missing PKG_PATH invocation
This commit is contained in:
parent
7644eb69cf
commit
2282a976f3
1 changed files with 3 additions and 4 deletions
|
@ -25,6 +25,7 @@
|
||||||
#include "utilwrapper.h"
|
#include "utilwrapper.h"
|
||||||
#include "anddict.h"
|
#include "anddict.h"
|
||||||
#include "andutils.h"
|
#include "andutils.h"
|
||||||
|
#include "paths.h"
|
||||||
#include "LocalizedStrIncludes.h"
|
#include "LocalizedStrIncludes.h"
|
||||||
|
|
||||||
typedef struct _TimerStorage {
|
typedef struct _TimerStorage {
|
||||||
|
@ -469,11 +470,9 @@ and_util_informMissing(XW_UtilCtxt* uc, XP_Bool isServer,
|
||||||
CommsConnType connType, XP_U16 nMissing )
|
CommsConnType connType, XP_U16 nMissing )
|
||||||
{
|
{
|
||||||
UTIL_CBK_HEADER( "informMissing",
|
UTIL_CBK_HEADER( "informMissing",
|
||||||
"(ZLorg/eehouse/android/xw4/jni/"
|
"(ZL" PKG_PATH("jni/CommsAddrRec$CommsConnType") ";I)V" );
|
||||||
"CommsAddrRec$CommsConnType;I)V" );
|
|
||||||
jobject jtyp = intToJEnum( env, connType,
|
jobject jtyp = intToJEnum( env, connType,
|
||||||
"org/eehouse/android/xw4/jni/"
|
PKG_PATH("jni/CommsAddrRec$CommsConnType") );
|
||||||
"CommsAddrRec$CommsConnType" );
|
|
||||||
(*env)->CallVoidMethod( env, util->jutil, mid, isServer, jtyp, nMissing );
|
(*env)->CallVoidMethod( env, util->jutil, mid, isServer, jtyp, nMissing );
|
||||||
(*env)->DeleteLocalRef( env, jtyp );
|
(*env)->DeleteLocalRef( env, jtyp );
|
||||||
UTIL_CBK_TAIL();
|
UTIL_CBK_TAIL();
|
||||||
|
|
Loading…
Reference in a new issue