Commit a6e2fe5a authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

comctl32: Set the result to IDOK on 'Finish'.

parent 93853094
...@@ -1703,6 +1703,8 @@ static BOOL PROPSHEET_Finish(HWND hwndDlg) ...@@ -1703,6 +1703,8 @@ static BOOL PROPSHEET_Finish(HWND hwndDlg)
if (msgResult != 0) if (msgResult != 0)
return FALSE; return FALSE;
if (psInfo->result == 0)
psInfo->result = IDOK;
if (psInfo->isModeless) if (psInfo->isModeless)
psInfo->activeValid = FALSE; psInfo->activeValid = FALSE;
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment