diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 12:32:48 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 12:32:48 +0100 |
commit | d925b8394fdd9f6a155179ae3730bd97d20b2351 (patch) | |
tree | 3de70a571d675193d94450215b44428f434ca1b9 /sd | |
parent | 729c70a2429753ea438b193de6fced88cac2b0fb (diff) |
loplugin:stringconstant: elide explicit ctor usage (manually due to macros)
Change-Id: I894bfe3ee6b932930d3088b83e4d99788f8b145a
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/eppt/pptx-epptooxml.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx index e1d7592545d0..aacdf0281363 100644 --- a/sd/source/filter/eppt/pptx-epptooxml.cxx +++ b/sd/source/filter/eppt/pptx-epptooxml.cxx @@ -436,7 +436,7 @@ void PowerPointExport::ImplWriteBackground( FSHelperPtr pFS, Reference< XPropert </p:grpSpPr>" #define GETA(propName) \ - ImplGetPropertyValue( mXPagePropSet, OUString( #propName ) ) + ImplGetPropertyValue( mXPagePropSet, #propName ) #define GET(variable, propName) \ if ( GETA(propName) ) \ |