зеркало из https://github.com/mozilla/pjs.git
Bug 270889 - Use correct versions of Append. r=darin.
Original committer: pedemont%us.ibm.com Original revision: 1.20 Original date: 2005/01/12 17:36:11
This commit is contained in:
Родитель
cf1193eeb4
Коммит
a594740785
|
@ -545,13 +545,13 @@ ThrowXPCOMException(JNIEnv* env, const nsresult aErrorCode,
|
|||
nsCAutoString methodSig("(");
|
||||
if (aErrorCode) {
|
||||
args[index++].j = aErrorCode;
|
||||
methodSig.Append("J");
|
||||
methodSig.Append('J');
|
||||
}
|
||||
if (aMessage) {
|
||||
args[index].l = env->NewStringUTF(aMessage);
|
||||
methodSig.Append("Ljava/lang/String;");
|
||||
methodSig.AppendLiteral("Ljava/lang/String;");
|
||||
}
|
||||
methodSig.Append(")V");
|
||||
methodSig.AppendLiteral(")V");
|
||||
|
||||
// create exception object
|
||||
jthrowable throwObj = nsnull;
|
||||
|
|
Загрузка…
Ссылка в новой задаче