diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-08 21:28:14 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-08 21:28:14 +0100 |
commit | 22a64d0500e49ef20975765d2613d951df06e9e1 (patch) | |
tree | d288bf53e402d1d4be2ee748fc86409a5648a11a /oox | |
parent | c615699af18635c1aa1e7c9b930748eca004c5fc (diff) |
loplugin:stringconstant
Change-Id: I33876585b5a406231954013051bc7f61045226b0
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/core/fragmenthandler2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/core/fragmenthandler2.cxx b/oox/source/core/fragmenthandler2.cxx index 0186d78448f4..ba7b6ef92579 100644 --- a/oox/source/core/fragmenthandler2.cxx +++ b/oox/source/core/fragmenthandler2.cxx @@ -63,7 +63,7 @@ bool FragmentHandler2::prepareMceContext( sal_Int32 nElement, const AttributeLis if (aMceState.empty() || aMceState.back() != MCE_STARTED) return false; - OUString aRequires = rAttribs.getString( (XML_Requires ), OUString("none") ); + OUString aRequires = rAttribs.getString( (XML_Requires ), "none" ); // At this point we can't access namespaces as the correct xml filter // is long gone. For now let's decide depending on a list of supported |