summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/confuno.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-05-19 17:17:29 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-05-19 17:17:29 +0200
commitdc4704ce1b067b62df0b0cf9cda3c4106d80292c (patch)
tree836d54ebc387cc58da0f7095dd3f79db4fb603e9 /sc/source/ui/unoobj/confuno.cxx
parent347779c223eed6e41b952f49fc0c0d0bec59f846 (diff)
loplugin:stringcopy: sc
Change-Id: Ic6cb5406d20e7e07b8e34514df71adf1c3a4e727
Diffstat (limited to 'sc/source/ui/unoobj/confuno.cxx')
-rw-r--r--sc/source/ui/unoobj/confuno.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/unoobj/confuno.cxx b/sc/source/ui/unoobj/confuno.cxx
index d69751056a65..ea4fa66be20e 100644
--- a/sc/source/ui/unoobj/confuno.cxx
+++ b/sc/source/ui/unoobj/confuno.cxx
@@ -438,7 +438,7 @@ uno::Any SAL_CALL ScDocumentConfiguration::getPropertyValue( const OUString& aPr
// (as in SwXDocumentSettings)
SfxPrinter* pPrinter = rDoc.GetPrinter( false );
if (pPrinter)
- aRet <<= OUString ( pPrinter->GetName());
+ aRet <<= pPrinter->GetName();
else
aRet <<= OUString();
}