Commit 91203006 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

devenum: Don't use DEVENUM_IPropertyBag_AddRef method directly.

parent 25aa60b3
......@@ -30,8 +30,6 @@
WINE_DEFAULT_DEBUG_CHANNEL(devenum);
static ULONG WINAPI DEVENUM_IPropertyBag_AddRef(LPPROPERTYBAG iface);
typedef struct
{
IEnumMoniker IEnumMoniker_iface;
......@@ -68,7 +66,7 @@ static HRESULT WINAPI DEVENUM_IPropertyBag_QueryInterface(
IsEqualGUID(riid, &IID_IPropertyBag))
{
*ppvObj = iface;
DEVENUM_IPropertyBag_AddRef(iface);
IPropertyBag_AddRef(iface);
return S_OK;
}
......
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