You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-04-13 14:42:51 -07:00
Added patch to fake success in IViewObject::Draw stub.
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
From 6dc1669f62dbaed088526f4afd3dc4b2e4527080 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Michael=20M=C3=BCller?= <michael@fds-team.de>
|
||||
Date: Sat, 8 Aug 2015 17:50:32 +0200
|
||||
Subject: ieframe: Return S_OK in IViewObject::Draw stub.
|
||||
|
||||
---
|
||||
dlls/ieframe/view.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/dlls/ieframe/view.c b/dlls/ieframe/view.c
|
||||
index 3e44991..546e251 100644
|
||||
--- a/dlls/ieframe/view.c
|
||||
+++ b/dlls/ieframe/view.c
|
||||
@@ -60,7 +60,7 @@ static HRESULT WINAPI ViewObject_Draw(IViewObject2 *iface, DWORD dwDrawAspect,
|
||||
FIXME("(%p)->(%d %d %p %p %p %p %p %p %p %08lx)\n", This, dwDrawAspect, lindex,
|
||||
pvAspect, ptd, hdcTargetDev, hdcDraw, lprcBounds, lprcWBounds, pfnContinue,
|
||||
dwContinue);
|
||||
- return E_NOTIMPL;
|
||||
+ return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI ViewObject_GetColorSet(IViewObject2 *iface, DWORD dwAspect,
|
||||
--
|
||||
2.5.0
|
||||
|
1
patches/ieframe-IViewObject-Draw/definition
Normal file
1
patches/ieframe-IViewObject-Draw/definition
Normal file
@@ -0,0 +1 @@
|
||||
Fixes: [30611] Fake success in IViewObject::Draw stub
|
Reference in New Issue
Block a user