comdlg32: Set PD_PAGENUMS from print dialog.
This commit is contained in:
parent
c6ff1ef6fb
commit
e0aabe4f8c
|
@ -397,7 +397,10 @@ static BOOL PRINTDLG_UpdatePrintDlgW(HWND hDlg,
|
||||||
}
|
}
|
||||||
lppd->nFromPage = nFromPage;
|
lppd->nFromPage = nFromPage;
|
||||||
lppd->nToPage = nToPage;
|
lppd->nToPage = nToPage;
|
||||||
|
lppd->Flags |= PD_PAGENUMS;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
lppd->Flags &= ~PD_PAGENUMS;
|
||||||
|
|
||||||
if (IsDlgButtonChecked(hDlg, chx1) == BST_CHECKED) {/* Print to file */
|
if (IsDlgButtonChecked(hDlg, chx1) == BST_CHECKED) {/* Print to file */
|
||||||
static WCHAR file[] = {'F','I','L','E',':',0};
|
static WCHAR file[] = {'F','I','L','E',':',0};
|
||||||
|
|
Loading…
Reference in New Issue