shdocvw: Silence QueryService traces in non-interactive runs.
They only pollute output making it harder to find useful informations.
This commit is contained in:
parent
95d98bdb53
commit
ddaf9171a1
|
@ -1350,6 +1350,9 @@ static HRESULT WINAPI ServiceProvider_QueryService(IServiceProvider *iface,
|
|||
{
|
||||
*ppv = NULL;
|
||||
|
||||
if(!winetest_interactive)
|
||||
return E_NOINTERFACE;
|
||||
|
||||
if (IsEqualGUID(&SID_STopLevelBrowser, guidService))
|
||||
trace("Service SID_STopLevelBrowser\n");
|
||||
else if (IsEqualGUID(&SID_SEditCommandTarget, guidService))
|
||||
|
|
Loading…
Reference in New Issue