comdlg32: Removed 16 bit dependency.
This commit is contained in:
parent
d8a5bc929d
commit
2484b73151
|
@ -22,7 +22,6 @@
|
|||
#define _WINE_DLL_CDLG_H
|
||||
|
||||
#include "dlgs.h"
|
||||
#include "wownt32.h"
|
||||
|
||||
/* Common dialogs implementation globals */
|
||||
#define COMDLG32_Atom ((ATOM)0xa000) /* MS uses this one to identify props */
|
||||
|
|
|
@ -754,7 +754,7 @@ static LRESULT CFn_WMInitDialog(HWND hDlg, LPARAM lParam, LPCHOOSEFONTW lpcf)
|
|||
{
|
||||
j=SendDlgItemMessageW(hDlg,cmb2,CB_SETCURSEL,j,0);
|
||||
SendMessageW(hDlg,WM_COMMAND,cmb2,
|
||||
MAKELONG(HWND_16(GetDlgItem(hDlg,cmb2)),CBN_SELCHANGE));
|
||||
MAKELONG(LOWORD(GetDlgItem(hDlg,cmb2)),CBN_SELCHANGE));
|
||||
}
|
||||
}
|
||||
CFn_ReleaseDC(lpcf, hdc);
|
||||
|
|
Loading…
Reference in New Issue