mirror of
https://github.com/reactos/wine.git
synced 2025-04-03 00:21:39 +00:00
comdlg32: NULL name in PRINTDLG_SetUpPrinterListComboA is correct so don't print a FIXME.
This commit is contained in:
parent
0e2db26fa3
commit
cdcdbe9b68
@ -133,8 +133,9 @@ INT PRINTDLG_SetUpPrinterListComboA(HWND hDlg, UINT id, LPCSTR name)
|
||||
|
||||
char buf[260];
|
||||
DWORD dwBufLen = sizeof(buf);
|
||||
FIXME("Can't find '%s' in printer list so trying to find default\n",
|
||||
name);
|
||||
if (name != NULL)
|
||||
WARN("Can't find %s in printer list so trying to find default\n",
|
||||
debugstr_a(name));
|
||||
if(!GetDefaultPrinterA(buf, &dwBufLen))
|
||||
return num;
|
||||
i = SendDlgItemMessageA(hDlg, id, CB_FINDSTRINGEXACT, -1, (LPARAM)buf);
|
||||
@ -165,8 +166,9 @@ static INT PRINTDLG_SetUpPrinterListComboW(HWND hDlg, UINT id, LPCWSTR name)
|
||||
(LPARAM)name)) == CB_ERR) {
|
||||
WCHAR buf[260];
|
||||
DWORD dwBufLen = sizeof(buf)/sizeof(buf[0]);
|
||||
TRACE("Can't find '%s' in printer list so trying to find default\n",
|
||||
debugstr_w(name));
|
||||
if (name != NULL)
|
||||
WARN("Can't find %s in printer list so trying to find default\n",
|
||||
debugstr_w(name));
|
||||
if(!GetDefaultPrinterW(buf, &dwBufLen))
|
||||
return num;
|
||||
i = SendDlgItemMessageW(hDlg, id, CB_FINDSTRINGEXACT, -1, (LPARAM)buf);
|
||||
|
Loading…
x
Reference in New Issue
Block a user