Merge branch 'hotfix/unicode-strings'
This commit is contained in:
commit
7d40320c89
@ -80,7 +80,7 @@ void PrintableModel::drawNumberSquare(QPainter &painter, double x, double y, int
|
|||||||
void PrintableModel::PrintableModel::drawCheckSquare(QPainter &painter, const QRectF &cell,
|
void PrintableModel::PrintableModel::drawCheckSquare(QPainter &painter, const QRectF &cell,
|
||||||
bool checked)
|
bool checked)
|
||||||
{
|
{
|
||||||
drawTextSquare(painter, cell, checked ? "\u2612" : "\u2610");
|
drawTextSquare(painter, cell, checked ? u8"\u2612" : u8"\u2610");
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrintableModel::drawResultSquare(QPainter &painter, double y, bool rightCell,
|
void PrintableModel::drawResultSquare(QPainter &painter, double y, bool rightCell,
|
||||||
|
@ -229,13 +229,13 @@ void ResultModel::printTo(QPainter &painter) const
|
|||||||
|
|
||||||
PrintableModel::drawTextSquare(painter, {x, y + 0 * rowHeight, cellWidth, rowHeight}, "");
|
PrintableModel::drawTextSquare(painter, {x, y + 0 * rowHeight, cellWidth, rowHeight}, "");
|
||||||
PrintableModel::drawTextSquare(painter, {x, y + 1 * rowHeight, cellWidth, rowHeight},
|
PrintableModel::drawTextSquare(painter, {x, y + 1 * rowHeight, cellWidth, rowHeight},
|
||||||
"\u2265 PR 84");
|
u8"\u2265 PR 84");
|
||||||
PrintableModel::drawTextSquare(painter, {x, y + 2 * rowHeight, cellWidth, rowHeight},
|
PrintableModel::drawTextSquare(painter, {x, y + 2 * rowHeight, cellWidth, rowHeight},
|
||||||
"< PR 84");
|
"< PR 84");
|
||||||
|
|
||||||
PrintableModel::drawGreySquare(painter, {x, y + 3 * rowHeight, cellWidth, rowHeight});
|
PrintableModel::drawGreySquare(painter, {x, y + 3 * rowHeight, cellWidth, rowHeight});
|
||||||
PrintableModel::drawTextSquare(painter, {x, y + 3 * rowHeight, cellWidth, rowHeight},
|
PrintableModel::drawTextSquare(painter, {x, y + 3 * rowHeight, cellWidth, rowHeight},
|
||||||
"\u2264 PR 16");
|
u8"\u2264 PR 16");
|
||||||
|
|
||||||
x += cellWidth;
|
x += cellWidth;
|
||||||
for (const auto &result : m_results)
|
for (const auto &result : m_results)
|
||||||
|
Reference in New Issue
Block a user