Commit 2ed34948 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

wbemdisp: Forward ISWbemNamedValueSet::Remove() to context object method.

parent b938f54b
...@@ -3450,9 +3450,11 @@ static HRESULT WINAPI namedvalueset_Remove( ...@@ -3450,9 +3450,11 @@ static HRESULT WINAPI namedvalueset_Remove(
BSTR name, BSTR name,
LONG flags ) LONG flags )
{ {
FIXME("\n"); struct namedvalueset *set = impl_from_ISWbemNamedValueSet( iface );
return E_NOTIMPL; TRACE("%p, %s, %#x\n", set, debugstr_w(name), flags);
return IWbemContext_DeleteValue( set->context, name, flags );
} }
static HRESULT WINAPI namedvalueset_Clone( static HRESULT WINAPI namedvalueset_Clone(
......
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