Commit 6c320a84 authored by Duane Clark's avatar Duane Clark Committed by Alexandre Julliard

Set the return value of the PD_PAGENUMS flag.

parent 4eb4c042
......@@ -463,7 +463,10 @@ static BOOL PRINTDLG_UpdatePrintDlgA(HWND hDlg,
}
lppd->nFromPage = nFromPage;
lppd->nToPage = nToPage;
lppd->Flags |= PD_PAGENUMS;
}
else
lppd->Flags &= ~PD_PAGENUMS;
if (IsDlgButtonChecked(hDlg, chx1) == BST_CHECKED) {/* Print to file */
lppd->Flags |= PD_PRINTTOFILE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment