Nikolay Sivov : wshom.ocx: Implement IWshShortcut_put_WorkingDirectory().
Module: wine Branch: master Commit: 033c18fce9efe649e201a5afc01b6af641cfbd86 URL: http://source.winehq.org/git/wine.git/?a=commit;h=033c18fce9efe649e201a5afc0... Author: Nikolay Sivov <nsivov(a)codeweavers.com> Date: Mon Jan 2 15:11:15 2012 +0300 wshom.ocx: Implement IWshShortcut_put_WorkingDirectory(). --- dlls/wshom.ocx/shell.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/wshom.ocx/shell.c b/dlls/wshom.ocx/shell.c index 0ab5080..7686284 100644 --- a/dlls/wshom.ocx/shell.c +++ b/dlls/wshom.ocx/shell.c @@ -490,8 +490,8 @@ static HRESULT WINAPI WshShortcut_get_WorkingDirectory(IWshShortcut *iface, BSTR static HRESULT WINAPI WshShortcut_put_WorkingDirectory(IWshShortcut *iface, BSTR WorkingDirectory) { WshShortcut *This = impl_from_IWshShortcut(iface); - FIXME("(%p)->(%s): stub\n", This, debugstr_w(WorkingDirectory)); - return E_NOTIMPL; + TRACE("(%p)->(%s): stub\n", This, debugstr_w(WorkingDirectory)); + return IShellLinkW_SetWorkingDirectory(This->link, WorkingDirectory); } static HRESULT WINAPI WshShortcut_Load(IWshShortcut *iface, BSTR PathLink)
participants (1)
-
Alexandre Julliard