Commit ddaf9171 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

shdocvw: Silence QueryService traces in non-interactive runs.

They only pollute output making it harder to find useful informations.
parent 95d98bdb
......@@ -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))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment