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

directmanipulation: Print the debug string and not the pointer to it.

parent b16f552e
......@@ -363,14 +363,14 @@ static HRESULT WINAPI content_SetContentRect(IDirectManipulationContent *iface,
static HRESULT WINAPI content_GetViewport(IDirectManipulationContent *iface, REFIID riid, void **object)
{
struct primarycontext *This = impl_from_IDirectManipulationContent(iface);
FIXME("%p, %p, %p\n", This, debugstr_guid(riid), object);
FIXME("%p, %s, %p\n", This, debugstr_guid(riid), object);
return E_NOTIMPL;
}
static HRESULT WINAPI content_GetTag(IDirectManipulationContent *iface, REFIID riid, void **object, UINT32 *id)
{
struct primarycontext *This = impl_from_IDirectManipulationContent(iface);
FIXME("%p, %p, %p, %p\n", This, debugstr_guid(riid), object, id);
FIXME("%p, %s, %p, %p\n", This, debugstr_guid(riid), object, id);
return E_NOTIMPL;
}
......
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