Module: wine Branch: master Commit: c18af414e5a29abac3bfaebd73f5ac6032a7d79c URL: http://source.winehq.org/git/wine.git/?a=commit;h=c18af414e5a29abac3bfaebd73...
Author: Huw Davies huw@codeweavers.com Date: Thu Nov 2 12:26:22 2006 +0000
comctl32: Implement PSM_GETRESULT.
---
dlls/comctl32/propsheet.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/comctl32/propsheet.c b/dlls/comctl32/propsheet.c index 4c81ec7..0487220 100644 --- a/dlls/comctl32/propsheet.c +++ b/dlls/comctl32/propsheet.c @@ -32,7 +32,6 @@ * - Wizard 97 header resizing * - Enforcing of minimal wizard size * - Messages: - * o PSM_GETRESULT * o PSM_INSERTPAGE * o PSM_RECALCPAGESIZES * o PSM_SETHEADERSUBTITLE @@ -2641,8 +2640,9 @@ static LRESULT PROPSHEET_IndexToId(HWND */ static LRESULT PROPSHEET_GetResult(HWND hwndDlg) { - FIXME("(%p): stub\n", hwndDlg); - return -1; + PropSheetInfo * psInfo = (PropSheetInfo*) GetPropW(hwndDlg, + PropSheetInfoStr); + return psInfo->result; }
/******************************************************************************