mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-03 09:36:40 +00:00
Merge branch 'fix_to_string' into 'master'
Fix Ptr::toString See merge request OpenMW/openmw!4165
This commit is contained in:
commit
f0019cafaa
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ namespace MWWorld
|
||||||
{
|
{
|
||||||
if (mRef == nullptr)
|
if (mRef == nullptr)
|
||||||
return "null object";
|
return "null object";
|
||||||
std::string result = mRef->isDeleted() ? "object" : "deleted object";
|
std::string result = mRef->isDeleted() ? "deleted object" : "object";
|
||||||
result += mRef->mRef.getRefNum().toString();
|
result += mRef->mRef.getRefNum().toString();
|
||||||
result += " (";
|
result += " (";
|
||||||
result += mRef->getTypeDescription();
|
result += mRef->getTypeDescription();
|
||||||
|
|
Loading…
Reference in a new issue