Merge pull request #228 from bensuperpc/change_cast

This commit is contained in:
flow
2022-10-23 14:28:33 -03:00
committed by Sefa Eyeoglu
parent 35e792c5de
commit fcef6321fc
6 changed files with 9 additions and 9 deletions

View File

@ -153,7 +153,7 @@ QString Task::describe()
auto name = objectName();
if(name.isEmpty())
{
out << QString("0x%1").arg((quintptr)this, 0, 16);
out << QString("0x%1").arg(reinterpret_cast<quintptr>(this), 0, 16);
}
else
{