From b152076d3bb179dfd990d70161e29a57ace402de Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Mon, 27 Jun 2005 18:46:47 +0000 Subject: [PATCH] Fix the BrowseForFolder dialog so that when it does the callbacks it uses the correct message instead of always sending BEFM_INITIALIZED. --- dlls/shell32/brsfolder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/brsfolder.c b/dlls/shell32/brsfolder.c index 3fd6b4eb24e..9d5b955972f 100644 --- a/dlls/shell32/brsfolder.c +++ b/dlls/shell32/brsfolder.c @@ -80,7 +80,7 @@ static void browsefolder_callback( LPBROWSEINFOW lpBrowseInfo, HWND hWnd, { if (!lpBrowseInfo->lpfn) return; - lpBrowseInfo->lpfn( hWnd, BFFM_INITIALIZED, param, lpBrowseInfo->lParam ); + lpBrowseInfo->lpfn( hWnd, msg, param, lpBrowseInfo->lParam ); } /******************************************************************************