Commit 51144d6a authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent c50f6a30
...@@ -1171,7 +1171,7 @@ static HRESULT WINAPI shellwindows_Revoke(IShellWindows *iface, LONG cookie) ...@@ -1171,7 +1171,7 @@ static HRESULT WINAPI shellwindows_Revoke(IShellWindows *iface, LONG cookie)
static HRESULT WINAPI shellwindows_OnNavigate(IShellWindows *iface, LONG cookie, VARIANT *loc) static HRESULT WINAPI shellwindows_OnNavigate(IShellWindows *iface, LONG cookie, VARIANT *loc)
{ {
FIXME("0x%x %p\n", cookie, debugstr_variant(loc)); FIXME("0x%x %s\n", cookie, debugstr_variant(loc));
return E_NOTIMPL; return E_NOTIMPL;
} }
...@@ -1184,7 +1184,7 @@ static HRESULT WINAPI shellwindows_OnActivated(IShellWindows *iface, LONG cookie ...@@ -1184,7 +1184,7 @@ static HRESULT WINAPI shellwindows_OnActivated(IShellWindows *iface, LONG cookie
static HRESULT WINAPI shellwindows_FindWindowSW(IShellWindows *iface, VARIANT *loc, static HRESULT WINAPI shellwindows_FindWindowSW(IShellWindows *iface, VARIANT *loc,
VARIANT *root, int class, LONG *hwnd, int options, IDispatch **disp) VARIANT *root, int class, LONG *hwnd, int options, IDispatch **disp)
{ {
TRACE("%s %p 0x%x %p 0x%x %p\n", debugstr_variant(loc), debugstr_variant(root), TRACE("%s %s 0x%x %p 0x%x %p\n", debugstr_variant(loc), debugstr_variant(root),
class, hwnd, options, disp); class, hwnd, options, disp);
if (class != SWC_DESKTOP) if (class != SWC_DESKTOP)
......
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