Module: wine Branch: master Commit: b17ef15e124d0a75ceed7ab9e16f0214a9e53286 URL: https://gitlab.winehq.org/wine/wine/-/commit/b17ef15e124d0a75ceed7ab9e16f021...
Author: Mohamad Al-Jaf mohamadaljaf@gmail.com Date: Sun Apr 7 01:44:54 2024 -0400
windows.ui: Return success in IInputPane2::TryShow().
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56536
---
dlls/windows.ui/inputpane.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dlls/windows.ui/inputpane.c b/dlls/windows.ui/inputpane.c index cd1ddec217a..383ca877d46 100644 --- a/dlls/windows.ui/inputpane.c +++ b/dlls/windows.ui/inputpane.c @@ -158,7 +158,8 @@ DEFINE_IINSPECTABLE( inputpane2, IInputPane2, struct inputpane, IInputPane_iface static HRESULT WINAPI inputpane2_TryShow( IInputPane2 *iface, boolean *result ) { FIXME( "iface %p, result %p stub!\n", iface, result ); - return E_NOTIMPL; + *result = FALSE; + return S_OK; }
static HRESULT WINAPI inputpane2_TryHide( IInputPane2 *iface, boolean *result )