Browse Source

fix strings pointing to enum fields in ResultCode java class

pull/1/head
Grant Limberg 11 years ago
parent
commit
db80070ccb
  1. 2
      java/build.xml
  2. 10
      java/jni/ZT1_jniutils.cpp

2
java/build.xml

@ -4,7 +4,7 @@
<target name="clean">
<delete dir="bin" failonerror="false"/>
<delete dir="classes" failonerror="false"/>
<!--<delete dir="libs" failonerror="false"/>-->
<delete dir="libs" failonerror="false"/>
<delete dir="obj" failonerror="false"/>
</target>

10
java/jni/ZT1_jniutils.cpp

@ -38,20 +38,20 @@ jobject createResultObject(JNIEnv *env, ZT1_ResultCode code)
switch(code)
{
case ZT1_RESULT_OK:
fieldName = "ZT1_RESULT_OK";
fieldName = "RESULT_OK";
break;
case ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY:
fieldName = "ZT1_RESULT_FATAL_ERROR_OUT_OF_MEMORY";
fieldName = "RESULT_FATAL_ERROR_OUT_OF_MEMORY";
break;
case ZT1_RESULT_FATAL_ERROR_DATA_STORE_FAILED:
fieldName = "ZT1_RESULT_FATAL_ERROR_DATA_STORE_FAILED";
fieldName = "RESULT_FATAL_ERROR_DATA_STORE_FAILED";
break;
case ZT1_RESULT_ERROR_NETWORK_NOT_FOUND:
fieldName = "ZT1_RESULT_ERROR_NETWORK_NOT_FOUND";
fieldName = "RESULT_ERROR_NETWORK_NOT_FOUND";
break;
case ZT1_RESULT_FATAL_ERROR_INTERNAL:
default:
fieldName = "ZT1_RESULT_FATAL_ERROR_INTERNAL";
fieldName = "RESULT_FATAL_ERROR_INTERNAL";
break;
}

Loading…
Cancel
Save