refactor: Get rid of this->m_

This commit is contained in:
WerWolv
2023-12-19 13:10:25 +01:00
parent dd4be3b772
commit c7ab4a4569
119 changed files with 2973 additions and 2973 deletions

View File

@@ -180,12 +180,12 @@ namespace hex::plugin::builtin {
}
unitString = wolv::util::trim(unitString);
this->m_unitString = unitString;
m_unitString = unitString;
if (unitString.empty()) {
if (multiplier == 1)
return { Unit::Unitless, 1 };
else {
this->m_unitString = unitStringCopy;
m_unitString = unitStringCopy;
return { Unit::Unitless, 1 };
}