Skip to content
Snippets Groups Projects
Commit ddaf9171 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard
Browse files

shdocvw: Silence QueryService traces in non-interactive runs.

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