Jacek Caban : mshtml: Added semi-stub implementation of IOmNavigator:: get_cookieEnabled.

Alexandre Julliard julliard at winehq.org
Thu Apr 5 12:31:47 CDT 2012


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Thu Apr  5 13:58:29 2012 +0200

mshtml: Added semi-stub implementation of IOmNavigator::get_cookieEnabled.

---

 dlls/mshtml/omnavigator.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/omnavigator.c b/dlls/mshtml/omnavigator.c
index bfc3d23..2ae9811 100644
--- a/dlls/mshtml/omnavigator.c
+++ b/dlls/mshtml/omnavigator.c
@@ -578,8 +578,11 @@ static HRESULT WINAPI OmNavigator_get_plugins(IOmNavigator *iface, IHTMLPluginsC
 static HRESULT WINAPI OmNavigator_get_cookieEnabled(IOmNavigator *iface, VARIANT_BOOL *p)
 {
     OmNavigator *This = impl_from_IOmNavigator(iface);
-    FIXME("(%p)->(%p)\n", This, p);
-    return E_NOTIMPL;
+
+    WARN("(%p)->(%p) semi-stub\n", This, p);
+
+    *p = VARIANT_TRUE;
+    return S_OK;
 }
 
 static HRESULT WINAPI OmNavigator_get_opsProfile(IOmNavigator *iface, IHTMLOpsProfile **p)




More information about the wine-cvs mailing list