wbemdisp: Forward ISWbemNamedValueSet::DeleteAll() to context object.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2021-03-03 09:04:28 +03:00 committed by Alexandre Julliard
parent a0c624c2b1
commit b938f54b1e
1 changed files with 4 additions and 2 deletions

View File

@ -3467,9 +3467,11 @@ static HRESULT WINAPI namedvalueset_Clone(
static HRESULT WINAPI namedvalueset_DeleteAll(
ISWbemNamedValueSet *iface )
{
FIXME("\n");
struct namedvalueset *set = impl_from_ISWbemNamedValueSet( iface );
return E_NOTIMPL;
TRACE("%p\n", set);
return IWbemContext_DeleteAll( set->context );
}
static const ISWbemNamedValueSetVtbl namedvalueset_vtbl =