fixing win32 bustage

git-svn-id: svn://10.0.0.236/trunk@154821 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cbiesinger%web.de
2004-04-13 19:54:44 +00:00
parent 99e06f2e6c
commit 542659148c

View File

@@ -291,7 +291,7 @@ XPCThrower::ThrowCOMError(JSContext* cx, unsigned long COMErrorCode,
msg += NS_STATIC_CAST(const char *,
_bstr_t(exception->bstrSource, false));
msg += " : ";
msg.AppendInt(COMErrorCode);
msg.AppendInt(NS_STATIC_CAST(PRUint32, COMErrorCode));
msg += " - ";
msg += NS_STATIC_CAST(const char *,
_bstr_t(exception->bstrDescription, false));
@@ -310,7 +310,7 @@ XPCThrower::ThrowCOMError(JSContext* cx, unsigned long COMErrorCode,
msg += NS_STATIC_CAST(const char *,src);
msg += " : ";
}
msg.AppendInt(COMErrorCode, 16);
msg.AppendInt(NS_STATIC_CAST(PRUint32, COMErrorCode), 16);
BSTR bstrDesc = NULL;
if(SUCCEEDED(pError->GetDescription(&bstrDesc)) && bstrDesc)
{
@@ -323,7 +323,7 @@ XPCThrower::ThrowCOMError(JSContext* cx, unsigned long COMErrorCode,
{
// No error object, so just report the result
msg += "COM Error Result = ";
msg.AppendInt(COMErrorCode, 16);
msg.AppendInt(NS_STATIC_CAST(PRUint32, COMErrorCode), 16);
}
}