diff --git a/src/libs/ifc/xml/vdomdocument.h b/src/libs/ifc/xml/vdomdocument.h index 803a62366..3bb8875cd 100644 --- a/src/libs/ifc/xml/vdomdocument.h +++ b/src/libs/ifc/xml/vdomdocument.h @@ -167,7 +167,7 @@ inline void VDomDocument::SetAttribute(QDomElement &domElement, const Q template <> inline void VDomDocument::SetAttribute(QDomElement &domElement, const QString &name, const bool &value) const { - domElement.setAttribute(name, value ? QStringLiteral("true") : QStringLiteral("false")); + domElement.setAttribute(name, value ? trueStr : falseStr); } //---------------------------------------------------------------------------------------------------------------------