Bugfix - receipt printing on widows fixed.

This commit is contained in:
2023-06-02 12:08:30 +02:00
parent 8b132c6c51
commit e958c86eb7
+2 -2
View File
@@ -61,9 +61,9 @@ void ReceiptGenerator::print()
if (OpenPrinter((LPWSTR)printer.toStdWString().c_str(), &hPrinter, nullptr))
{
docInfo.pDocName = (LPWSTR)"Uctenka";
docInfo.pDocName = (LPWSTR)(L"Uctenka");
docInfo.pOutputFile = nullptr;
docInfo.pDatatype = (LPWSTR)"RAW";
docInfo.pDatatype = (LPWSTR)(L"RAW");
dwJob = StartDocPrinter(hPrinter, 1, (LPBYTE)&docInfo);
if (dwJob > 0)