summaryrefslogtreecommitdiff
path: root/l10ntools/source/xmlparse.cxx
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-11-23 19:50:59 +0100
committerGert Faller <gertfaller@aliceadsl.fr>2010-11-23 19:50:59 +0100
commit089f03d72c4a2d69002c184854a244c84927b6ec (patch)
tree18ceca8db43672d041059f9178d77a01ffd303d5 /l10ntools/source/xmlparse.cxx
parent1df8ba50d7eaa05b9f10ffab18196a85d5faf5c8 (diff)
RTL_CONSTASCII_USTRINGPARAM in libs-gui 15
Diffstat (limited to 'l10ntools/source/xmlparse.cxx')
-rw-r--r--l10ntools/source/xmlparse.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/l10ntools/source/xmlparse.cxx b/l10ntools/source/xmlparse.cxx
index 575d1665d337..9733648cadc1 100644
--- a/l10ntools/source/xmlparse.cxx
+++ b/l10ntools/source/xmlparse.cxx
@@ -931,9 +931,9 @@ void XMLElement::Print(XMLNode *pCur, OUStringBuffer& buffer , bool rootelement
buffer.append( OUString(RTL_CONSTASCII_USTRINGPARAM(" ")) );
buffer.append( aAttrName );
buffer.append( OUString(RTL_CONSTASCII_USTRINGPARAM("=")) );
- buffer.append( OUString::createFromAscii("\\\"") );
+ buffer.append( OUString(RTL_CONSTASCII_USTRINGPARAM("\\\"")) );
buffer.append( pElement->GetAttributeList()->GetObject( j )->GetValue() );
- buffer.append( OUString::createFromAscii("\\\"") );
+ buffer.append( OUString(RTL_CONSTASCII_USTRINGPARAM("\\\"")) );
}
}
}