mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 412811 - "xpconnect-tools build broken" [p=armin76@gentoo.org (Raúl Porcel) r+sr=bsmedberg (NPODB)]
This commit is contained in:
parent
a6dbb66e21
commit
cf0a71a1f5
@ -244,8 +244,8 @@ nsXPCSample_HookerUpper::CreateSampleObjectAtGlobalScope(const char *name, PRInt
|
||||
return NS_ERROR_FAILURE;
|
||||
|
||||
// get the xpconnect native call context
|
||||
nsCOMPtr<nsIXPCNativeCallContext> callContext;
|
||||
xpc->GetCurrentNativeCallContext(getter_AddRefs(callContext));
|
||||
nsAXPCNativeCallContext *callContext = nsnull;
|
||||
xpc->GetCurrentNativeCallContext(&callContext);
|
||||
if(!callContext)
|
||||
return NS_ERROR_FAILURE;
|
||||
|
||||
|
@ -93,8 +93,8 @@ NS_IMETHODIMP nsXPCToolsCompiler::CompileFile(nsILocalFile *aFile, PRBool strict
|
||||
return NS_ERROR_FAILURE;
|
||||
|
||||
// get the xpconnect native call context
|
||||
nsCOMPtr<nsIXPCNativeCallContext> callContext;
|
||||
xpc->GetCurrentNativeCallContext(getter_AddRefs(callContext));
|
||||
nsAXPCNativeCallContext *callContext = nsnull;
|
||||
xpc->GetCurrentNativeCallContext(&callContext);
|
||||
if(!callContext)
|
||||
return NS_ERROR_FAILURE;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user