msxml3/tests: Remove traces.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2020-07-14 11:47:48 +03:00 committed by Alexandre Julliard
parent ea53b3c22e
commit 007df5deed
2 changed files with 0 additions and 5 deletions

View File

@ -13146,8 +13146,6 @@ static BOOL qi_list_contains_service(REFIID service, REFIID iid)
static HRESULT WINAPI sp_QueryInterface(IServiceProvider *iface, REFIID iid, void **ppv)
{
trace("sp_QueryInterface: %s\n", wine_dbgstr_guid(iid));
if (qi_count < ARRAY_SIZE(qi_list))
qi_list[qi_count++] = iid;
else
@ -13177,8 +13175,6 @@ static ULONG WINAPI sp_Release(IServiceProvider *iface)
static HRESULT WINAPI sp_QueryService(IServiceProvider *iface, REFGUID service,
REFIID iid, void **ppv)
{
trace("sp_QueryService: %s, %s\n", wine_dbgstr_guid(service), wine_dbgstr_guid(iid));
if (IsEqualGUID(service, &SID_SContainerDispatch) ||
IsEqualGUID(service, &SID_SInternetHostSecurityManager))
{

View File

@ -235,7 +235,6 @@ static IHTMLElementCollection htmlecoll = { &TestHTMLECollectionVtbl };
/* test IHTMLDocument2 */
static HRESULT WINAPI htmldoc2_QueryInterface(IHTMLDocument2 *iface, REFIID riid, void **ppvObject)
{
trace("\n");
*ppvObject = NULL;
return E_NOINTERFACE;
}