Commit b49f9145 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

Fix printer selection in PD_PRINTSETUP type dialogs.

parent ee5445da
......@@ -1514,7 +1514,7 @@ LRESULT PRINTDLG_WMCommandA(HWND hDlg, WPARAM wParam,
break;
case cmb1: /* Printer Combobox in PRINT SETUP, quality combobox in PRINT */
if (PrinterComboID != wParam) {
if (PrinterComboID != LOWORD(wParam)) {
FIXME("No handling for print quality combo box yet.\n");
break;
}
......@@ -1678,7 +1678,7 @@ static LRESULT PRINTDLG_WMCommandW(HWND hDlg, WPARAM wParam,
break;
case cmb1: /* Printer Combobox in PRINT SETUP, quality combobox in PRINT */
if (PrinterComboID != wParam) {
if (PrinterComboID != LOWORD(wParam)) {
FIXME("No handling for print quality combo box yet.\n");
break;
}
......
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