comdlg32: Assign to structs instead of using memcpy.
This commit is contained in:
parent
8349a9f52e
commit
2b217ea9af
|
@ -374,7 +374,7 @@ static int SetFontStylesToCombo2(HWND hwnd, HDC hdc, const LOGFONTW *lplf)
|
|||
int i,j;
|
||||
LOGFONTW lf;
|
||||
|
||||
memcpy(&lf, lplf, sizeof(LOGFONTW));
|
||||
lf = *lplf;
|
||||
|
||||
for (i=0;i<FSTYLES;i++)
|
||||
{
|
||||
|
|
|
@ -2850,7 +2850,7 @@ PRINTDLG_PS_ChangePaperPrev(const PageSetupDataA *pda)
|
|||
MoveWindow(GetDlgItem(pda->hDlg, rct2), x+width, y+SHADOW, SHADOW, height, FALSE);
|
||||
MoveWindow(GetDlgItem(pda->hDlg, rct3), x+SHADOW, y+height, width, SHADOW, FALSE);
|
||||
MoveWindow(GetDlgItem(pda->hDlg, rct1), x, y, width, height, FALSE);
|
||||
memcpy(&rtTmp, &pda->rtDrawRect, sizeof(RECT));
|
||||
rtTmp = pda->rtDrawRect;
|
||||
rtTmp.right += SHADOW;
|
||||
rtTmp.bottom += SHADOW;
|
||||
#undef SHADOW
|
||||
|
|
Loading…
Reference in New Issue