diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-28 14:53:10 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-29 08:50:12 +0200 |
commit | 148a9f29d4bbd31a1d59cb3f078f719cf09d0d90 (patch) | |
tree | a903a28846f330369c08bb4f1035fe407b5d2d7f /svx/source/unodraw | |
parent | 3c75009a677ae950105a65c699b16caf72b516b0 (diff) |
loplugin:constparams in svx
Change-Id: Icc388182b9b7b6a6617793be09217f06bed7332d
Reviewed-on: https://gerrit.libreoffice.org/40527
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/unodraw')
-rw-r--r-- | svx/source/unodraw/UnoGraphicExporter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/unodraw/UnoGraphicExporter.cxx b/svx/source/unodraw/UnoGraphicExporter.cxx index 1fe32e50283f..f395f256d704 100644 --- a/svx/source/unodraw/UnoGraphicExporter.cxx +++ b/svx/source/unodraw/UnoGraphicExporter.cxx @@ -108,10 +108,10 @@ namespace { Fraction maScaleX; Fraction maScaleY; - explicit ExportSettings( SdrModel* pDoc ); + explicit ExportSettings( SdrModel const * pDoc ); }; - ExportSettings::ExportSettings( SdrModel* pDoc ) + ExportSettings::ExportSettings( SdrModel const * pDoc ) : mnWidth( 0 ) , mnHeight( 0 ) , mbExportOnlyBackground( false ) |