Kaydet (Commit) 577e9009 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

svgio: Use appropriate OUString functions on string constants

Change-Id: Idce7768fd43453703ba758d9fddf26e0b7e5cc76
üst cfe98bd1
......@@ -246,7 +246,7 @@ namespace svgio
// of a SVG export with font embedding. Remove this to make font matching work. This
// is pretty safe since there should be no font family names ending on ' embedded'.
// Remove again when FontEmbedding is implemented in SVG import
if(aFontFamily.endsWithAsciiL(" embedded", 9))
if(aFontFamily.endsWith(" embedded"))
{
aFontFamily = aFontFamily.copy(0, aFontFamily.getLength() - 9);
}
......
......@@ -59,9 +59,7 @@ namespace svgio
if(rId.getLength())
{
const OUString aNewConcatenated(
OUString::createFromAscii("#") +
rId +
aConcatenated);
"#" + rId + aConcatenated);
if(pParent)
{
......@@ -113,9 +111,7 @@ namespace svgio
for(sal_uInt32 a(0); a < aParts.size(); a++)
{
const OUString aNewConcatenated(
OUString::createFromAscii(".") +
aParts[a] +
aConcatenated);
"." + aParts[a] + aConcatenated);
if(pParent)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment