More "fixes" to dlls/commdlg/filedlg.c

Carlos clozano at andago.com
Sat Oct 12 13:20:54 CDT 2002


Hello,

Now the OK button in select directory window of
mirc591t.exe installer works. I wait that it doesn't break
anything different, i don't understand yet the 
filedlg code.

Changelog:
 * dlls/commdlg/filedlg.c
   Filename is taken from the correct field. 


Carlos.

-- 
____________________________________________________
     ___   _____  _   ____
    / __// _   // /  / o)    clozano
   / /_ / /_/ // /_ /  \  @andago.com
  /___//_/ /_//___//__)
____________________________________________________

-------------- next part --------------
--- dlls/commdlg/filedlg.c	12 Oct 2002 11:42:43 -0000
+++ dlls/commdlg/filedlg.c	12 Oct 2002 19:40:33 -0000
@@ -884,7 +884,7 @@
     if (path)
         lstrcpynW(filename, path, sizeof(filename)/sizeof(WCHAR));
     else
-        GetDlgItemTextW( hWnd, edt1, filename, sizeof(filename)/sizeof(WCHAR));
+        GetDlgItemTextW( hWnd, stc1, filename, sizeof(filename)/sizeof(WCHAR));
 
     /* if we did not click in file list to get there */
     if (control != lst1)


More information about the wine-patches mailing list