Nikolay Sivov : wshom.ocx: Implement IWshShortcut_put_WorkingDirectory().

Alexandre Julliard julliard at winehq.org
Tue Jan 3 12:52:52 CST 2012


Module: wine
Branch: master
Commit: 033c18fce9efe649e201a5afc01b6af641cfbd86
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=033c18fce9efe649e201a5afc01b6af641cfbd86

Author: Nikolay Sivov <nsivov at 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)




More information about the wine-cvs mailing list