summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/xfilter/xfparastyle.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-08-01 09:29:37 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-08-01 10:18:35 +0200
commit8c64b2e06b7495e50c0a8d46d639316283da6a9c (patch)
tree531a8078c97f076f7d0170016f539e8e28d2dc4c /lotuswordpro/source/filter/xfilter/xfparastyle.cxx
parenttdf#109790 RTF import: keep remembering paragraph style between \cell and \row (diff)
downloadcore-8c64b2e06b7495e50c0a8d46d639316283da6a9c.tar.gz
core-8c64b2e06b7495e50c0a8d46d639316283da6a9c.zip
loplugin:constparams in lotuswordpro
Change-Id: I2ad14fa797c99d26975dc472c1db115d94160eee Reviewed-on: https://gerrit.libreoffice.org/40615 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'lotuswordpro/source/filter/xfilter/xfparastyle.cxx')
-rw-r--r--lotuswordpro/source/filter/xfilter/xfparastyle.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfparastyle.cxx b/lotuswordpro/source/filter/xfilter/xfparastyle.cxx
index 7eaa391813b6..14f07aac964a 100644
--- a/lotuswordpro/source/filter/xfilter/xfparastyle.cxx
+++ b/lotuswordpro/source/filter/xfilter/xfparastyle.cxx
@@ -219,14 +219,14 @@ void XFParaStyle::SetMargins(double left, double right, double top, double bo
m_aMargin.SetBottom( bottom );
}
-void XFParaStyle::SetShadow(enumXFShadowPos pos, double offset, XFColor& color)
+void XFParaStyle::SetShadow(enumXFShadowPos pos, double offset, XFColor const & color)
{
m_aShadow.SetPosition(pos);
m_aShadow.SetOffset(offset);
m_aShadow.SetColor(color);
}
-void XFParaStyle::SetBackColor(XFColor& color)
+void XFParaStyle::SetBackColor(XFColor const & color)
{
m_aBackColor = color;
m_nFlag |= XFPARA_FLAG_BACKCOLOR;