summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/framework/buffernode.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlsecurity/source/framework/buffernode.cxx')
-rw-r--r--xmlsecurity/source/framework/buffernode.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlsecurity/source/framework/buffernode.cxx b/xmlsecurity/source/framework/buffernode.cxx
index d966217ee853..cc6c37c18aee 100644
--- a/xmlsecurity/source/framework/buffernode.cxx
+++ b/xmlsecurity/source/framework/buffernode.cxx
@@ -200,7 +200,7 @@ OUString BufferNode::printChildren() const
for( const ElementCollector* ii : m_vElementCollectors )
{
- rc.append("BufID=").append(ii->getBufferId());
+ rc.append("BufID=" + OUString::number(ii->getBufferId()));
if (ii->getModify())
{
@@ -222,7 +222,7 @@ OUString BufferNode::printChildren() const
break;
}
- rc.append("(SecID=").append(ii->getSecurityId()).append(") ");
+ rc.append("(SecID=" + OUString::number(ii->getSecurityId()) + ") ");
}
return rc.makeStringAndClear();