clean up spaces and tabs at the end of lines

This commit is contained in:
Jasmine Iwanek
2022-02-19 23:52:47 -05:00
parent 1362ade967
commit 25e9087f3f
4 changed files with 20 additions and 20 deletions

View File

@@ -79,7 +79,7 @@ void SoftwareRenderer::onPaint(QPaintDevice* device) {
#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
painter.fillRect(0, 0, device->width(), device->height(), QColorConstants::Black);
#else
painter.fillRect(0,0, device->width(), device->height(), Qt::black);
painter.fillRect(0, 0, device->width(), device->height(), Qt::black);
#endif
painter.setCompositionMode(QPainter::CompositionMode_Plus);
painter.drawImage(destination, *images[cur_image], source);