From ad9507b5f37088d495dea75b92b4ccf3b31e1772 Mon Sep 17 00:00:00 2001 From: Jeff Latimer Date: Wed, 13 Oct 2010 12:04:56 +1100 Subject: [PATCH] comctl32: Change stub to return IDYES instead of IDOK. --- dlls/comctl32/commctrl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/commctrl.c b/dlls/comctl32/commctrl.c index c37c485eeda..a82b233c6d6 100644 --- a/dlls/comctl32/commctrl.c +++ b/dlls/comctl32/commctrl.c @@ -1698,7 +1698,7 @@ HRESULT WINAPI TaskDialogIndirect(const TASKDIALOGCONFIG *pTaskConfig, int *pnBu { FIXME("%p, %p, %p, %p\n", pTaskConfig, pnButton, pnRadioButton, pfVerificationFlagChecked); - if (pnButton) *pnButton = IDOK; + if (pnButton) *pnButton = IDYES; if (pnRadioButton) *pnRadioButton = pTaskConfig->nDefaultButton; if (pfVerificationFlagChecked) *pfVerificationFlagChecked = TRUE; return S_OK;