mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 19:02:59 +00:00
fix instances of !var & const that should be !(var & const)
the warning not covered with this commit is fixed via16c3714774
upstream commits:ef96489ede
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
8cacaf808c
commit
4b114f9688
1 changed files with 1 additions and 1 deletions
|
@ -6521,7 +6521,7 @@ void QPainter::drawTextItem(const QPointF &p, const QTextItem &_ti)
|
|||
return;
|
||||
|
||||
const RenderHints oldRenderHints = d->state->renderHints;
|
||||
if (!d->state->renderHints & QPainter::Antialiasing && d->state->matrix.type() >= QTransform::TxScale) {
|
||||
if (!(d->state->renderHints & QPainter::Antialiasing) && d->state->matrix.type() >= QTransform::TxScale) {
|
||||
// draw antialias decoration (underline/overline/strikeout) with
|
||||
// transformed text
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue