From: Mohamad Al-Jaf mohamadaljaf@gmail.com
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 )