summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/animationimport.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-11 11:25:42 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-11 11:25:42 +0100
commit15f84c9cd4bf0a58ce85868c980eeaf1dc330f5c (patch)
tree8fdb5cf3cd7bd99e06e57180c26f4d19acbbefe1 /xmloff/source/draw/animationimport.cxx
parent5088b2066651ed133dcfd93388f7ac7187844d33 (diff)
Some loplugin:conststringvar/stringconstant improvements: xmloff
Change-Id: I05e03936d9e5518fa7ba4d9c72d5b8e241e32526
Diffstat (limited to 'xmloff/source/draw/animationimport.cxx')
-rw-r--r--xmloff/source/draw/animationimport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/draw/animationimport.cxx b/xmloff/source/draw/animationimport.cxx
index c4c113b744a5..ac7033f91047 100644
--- a/xmloff/source/draw/animationimport.cxx
+++ b/xmloff/source/draw/animationimport.cxx
@@ -105,7 +105,7 @@ static ::rtl::OUString
lcl_GetMediaReference(SvXMLImport const& rImport, ::rtl::OUString const& rURL)
{
if (rImport.IsPackageURL(rURL))
- return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("vnd.sun.star.Package:")) + rURL;
+ return "vnd.sun.star.Package:" + rURL;
return rImport.GetAbsoluteReference(rURL);
}