bug=32011
r=ashuk a=edburns This set of changes replaces all occurrences of env->Func(args...) with ::util_Func(env, args...) Except of course, for the implementations of the above mentioned ::util_Func() functions. This is done to allow the JNI functions to be called from a non JNI context, such as UNO. git-svn-id: svn://10.0.0.236/trunk@63190 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -218,10 +218,10 @@ Java_org_mozilla_webclient_wrapper_1native_RDFTreeNode_nativeToString
|
||||
length = string->Length();
|
||||
}
|
||||
|
||||
result = env->NewString(textForNode, length);
|
||||
result = ::util_NewString(env, textForNode, length);
|
||||
}
|
||||
else {
|
||||
result = env->NewStringUTF("");
|
||||
result = ::util_NewStringUTF(env, "");
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user