shell32: Use lParam for BFFM_SETOKTEXT.

This commit is contained in:
Rico Schüller 2013-11-22 10:35:44 +01:00 committed by Alexandre Julliard
parent d8f54b4d49
commit 5f15a5633c
1 changed files with 2 additions and 2 deletions

View File

@ -1027,8 +1027,8 @@ static INT_PTR CALLBACK BrsFolderDlgProc( HWND hWnd, UINT msg, WPARAM wParam,
break;
case BFFM_SETOKTEXT: /* unicode only */
TRACE("Set OK text %s\n", debugstr_w((LPWSTR)wParam));
SetWindowTextW(GetDlgItem(hWnd, 1), (LPWSTR)wParam);
TRACE("Set OK text %s\n", debugstr_w((LPWSTR)lParam));
SetWindowTextW(GetDlgItem(hWnd, 1), (LPWSTR)lParam);
break;
case BFFM_SETSELECTIONA: