Rico Schüller : shell32: Use lParam for BFFM_SETOKTEXT.
Module: wine Branch: stable Commit: fbdeeaa57f28850ddac2068e72f95fbe04cda09c URL: http://source.winehq.org/git/wine.git/?a=commit;h=fbdeeaa57f28850ddac2068e72... Author: Rico Schüller <kgbricola(a)web.de> Date: Fri Nov 22 10:35:44 2013 +0100 shell32: Use lParam for BFFM_SETOKTEXT. (cherry picked from commit 5f15a5633c338352aed17474eaa9acec2fe07a1d) --- dlls/shell32/brsfolder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/shell32/brsfolder.c b/dlls/shell32/brsfolder.c index a14c172..a849682 100644 --- a/dlls/shell32/brsfolder.c +++ b/dlls/shell32/brsfolder.c @@ -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:
participants (1)
-
Alexandre Julliard