mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 21:22:47 +00:00
Fix build bustage. needed a typecast in some cases, but not others.
This commit is contained in:
parent
20185227fc
commit
e5d4c38a9a
@ -267,7 +267,7 @@ NS_IMETHODIMP _class::QueryInterface(REFNSIID aIID, void** aInstancePtr) \
|
|||||||
foundInterface = 0; \
|
foundInterface = 0; \
|
||||||
nsresult status; \
|
nsresult status; \
|
||||||
if ( !foundInterface ) \
|
if ( !foundInterface ) \
|
||||||
status = _baseclass::QueryInterface(aIID, &foundInterface); \
|
status = _baseclass::QueryInterface(aIID, (void**)&foundInterface); \
|
||||||
else \
|
else \
|
||||||
{ \
|
{ \
|
||||||
NS_ADDREF(foundInterface); \
|
NS_ADDREF(foundInterface); \
|
||||||
|
@ -267,7 +267,7 @@ NS_IMETHODIMP _class::QueryInterface(REFNSIID aIID, void** aInstancePtr) \
|
|||||||
foundInterface = 0; \
|
foundInterface = 0; \
|
||||||
nsresult status; \
|
nsresult status; \
|
||||||
if ( !foundInterface ) \
|
if ( !foundInterface ) \
|
||||||
status = _baseclass::QueryInterface(aIID, &foundInterface); \
|
status = _baseclass::QueryInterface(aIID, (void**)&foundInterface); \
|
||||||
else \
|
else \
|
||||||
{ \
|
{ \
|
||||||
NS_ADDREF(foundInterface); \
|
NS_ADDREF(foundInterface); \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user