Fix some compiler warnings
This commit is contained in:
parent
100b5e0371
commit
01e38d12ed
17 changed files with 51 additions and 50 deletions
|
|
@ -31,7 +31,7 @@ BlurhashResponse::run()
|
|||
return;
|
||||
}
|
||||
|
||||
QImage image(decoded.image.data(), decoded.width, decoded.height, QImage::Format_RGB32);
|
||||
QImage image(decoded.image.data(), (int)decoded.width, (int)decoded.height, QImage::Format_RGB32);
|
||||
|
||||
m_image = image.copy();
|
||||
emit finished();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue