Fixes #13011: Failure of test additionOperators when built with Qt6

This commit is contained in:
wmayer
2024-03-17 12:06:16 +01:00
committed by wwmayer
parent 815458435d
commit 0ae1ec462d

View File

@@ -332,7 +332,7 @@ public:
MappedName& operator+=(const char* other)
{
if (other && (other[0] != 0)) {
this->postfix.append(other, -1);
this->postfix.append(other, static_cast<int>(qstrlen(other)));
}
return *this;
}