mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
debug type build fix
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
421e9a63c5
commit
4f6495a780
1 changed files with 1 additions and 1 deletions
|
@ -3254,7 +3254,7 @@ QImage QRasterBuffer::bufferImage() const
|
|||
QImage image(m_width, m_height, QImage::Format_ARGB32_Premultiplied);
|
||||
|
||||
for (int y = 0; y < m_height; ++y) {
|
||||
const uint *span = (const uint *)this->constScanLine(y);
|
||||
const uint *span = (const uint *)this->scanLine(y);
|
||||
|
||||
for (int x=0; x<m_width; ++x) {
|
||||
image.setPixel(x, y, span[x]);
|
||||
|
|
Loading…
Add table
Reference in a new issue