One final wchar_t -> PRUnichar. Not part of the build.

This commit is contained in:
mhammond%skippinet.com.au 2003-07-30 23:24:05 +00:00
parent 46d6fafdf5
commit 7281406073

View File

@ -1886,7 +1886,7 @@ PyObject *PyXPCOM_GatewayVariantHelper::MakeSingleParam(int index, PythonTypeDes
break;
}
case nsXPTType::T_WCHAR: {
wchar_t temp = (wchar_t)DEREF_IN_OR_OUT(ns_v.val.wc, PRUint16);
PRUnichar temp = (PRUnichar)DEREF_IN_OR_OUT(ns_v.val.wc, PRUnichar);
ret = PyUnicodeUCS2_FromUnicode(&temp, 1);
break;
}