Module: wine Branch: master Commit: ad9507b5f37088d495dea75b92b4ccf3b31e1772 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ad9507b5f37088d495dea75b92...
Author: Jeff Latimer lats@yless4u.com.au Date: Wed Oct 13 12:04:56 2010 +1100
comctl32: Change stub to return IDYES instead of IDOK.
---
dlls/comctl32/commctrl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/comctl32/commctrl.c b/dlls/comctl32/commctrl.c index c37c485..a82b233 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;