user.exe16: Fix handling of DDL_DRIVES flag in DlgDirList.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=18734 Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6500f882da
commit
0a788caf8b
|
@ -636,7 +636,7 @@ INT16 WINAPI DlgDirList16( HWND16 hDlg, LPSTR spec, INT16 idLBox,
|
|||
* be set automatically (this is different in Win32, and
|
||||
* DIALOG_DlgDirList sends Win32 messages to the control,
|
||||
* so do it here) */
|
||||
if (attrib & DDL_DRIVES) attrib |= DDL_EXCLUSIVE;
|
||||
if (attrib == DDL_DRIVES) attrib |= DDL_EXCLUSIVE;
|
||||
return DlgDirListA( WIN_Handle32(hDlg), spec, idLBox, idStatic, attrib );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue