summaryrefslogtreecommitdiffstats
path: root/oox/source/core/relations.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/core/relations.cxx')
-rw-r--r--oox/source/core/relations.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/core/relations.cxx b/oox/source/core/relations.cxx
index b7a4faad8fed..1b44f9e590d3 100644
--- a/oox/source/core/relations.cxx
+++ b/oox/source/core/relations.cxx
@@ -40,12 +40,12 @@ OUString lclAppendFileName( const OUString& rPath, const OUString& rFileName )
OUString createOfficeDocRelationTypeTransitional(const OUString& rType)
{
- return OUString("http://schemas.openxmlformats.org/officeDocument/2006/relationships/") + rType;
+ return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/" + rType;
}
OUString createOfficeDocRelationTypeStrict(const OUString& rType)
{
- return OUString("http://purl.oclc.org/ooxml/officeDocument/relationships/") + rType;
+ return "http://purl.oclc.org/ooxml/officeDocument/relationships/" + rType;
}
}