comdlg32: Assign to structs instead of using memcpy.

This commit is contained in:
Andrew Talbot 2008-02-29 15:54:56 +00:00 committed by Alexandre Julliard
parent 8349a9f52e
commit 2b217ea9af
2 changed files with 2 additions and 2 deletions

View File

@ -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++)
{

View File

@ -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