From 34f1811d1263dc9ac5cac34376dcc59782821b00 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Mon, 2 Jan 2012 15:12:02 +0300 Subject: [PATCH] wshom.ocx: Implement IWshShortcut_put_TargetPath(). --- dlls/wshom.ocx/shell.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/wshom.ocx/shell.c b/dlls/wshom.ocx/shell.c index 7686284c3de..121d3e73677 100644 --- a/dlls/wshom.ocx/shell.c +++ b/dlls/wshom.ocx/shell.c @@ -462,8 +462,8 @@ static HRESULT WINAPI WshShortcut_get_TargetPath(IWshShortcut *iface, BSTR *Path static HRESULT WINAPI WshShortcut_put_TargetPath(IWshShortcut *iface, BSTR Path) { WshShortcut *This = impl_from_IWshShortcut(iface); - FIXME("(%p)->(%s): stub\n", This, debugstr_w(Path)); - return E_NOTIMPL; + TRACE("(%p)->(%s)\n", This, debugstr_w(Path)); + return IShellLinkW_SetPath(This->link, Path); } static HRESULT WINAPI WshShortcut_get_WindowStyle(IWshShortcut *iface, int *ShowCmd)