summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpdrawobj.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-23 09:40:09 +0200
committerNoel Grandin <noel@peralex.com>2016-03-23 10:19:43 +0200
commitb6fc1f033f3c23cac389ddaec32af04dc80cc1a2 (patch)
treecfacff6b9a391f6c3dfa3c6661d9968ecf5f8895 /lotuswordpro/source/filter/lwpdrawobj.cxx
parentde0e1e7d4bc99be3e9b9355adf243677914de4c0 (diff)
loplugin:constantparam in lotuswordpro
Change-Id: I09c2301adb674fbed68a2659f828c7501a90b0c6
Diffstat (limited to 'lotuswordpro/source/filter/lwpdrawobj.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpdrawobj.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/lwpdrawobj.cxx b/lotuswordpro/source/filter/lwpdrawobj.cxx
index cd1dee6954c7..82e1fc5f9842 100644
--- a/lotuswordpro/source/filter/lwpdrawobj.cxx
+++ b/lotuswordpro/source/filter/lwpdrawobj.cxx
@@ -252,7 +252,7 @@ void LwpDrawObj::SetLineStyle(XFDrawStyle* pStyle, sal_uInt8 nWidth, sal_uInt8 n
if (nLineStyle == LS_DOT)
{
- pStyle->SetLineDashStyle(enumXFLineDash, 1, 1, 0.05, 0.05, 0.05);
+ pStyle->SetLineDashStyle(enumXFLineDash, 0.05, 0.05, 0.05);
}
// line width
@@ -317,11 +317,11 @@ void LwpDrawObj::SetArrowHead(XFDrawStyle* pOpenedObjStyle, sal_uInt8 nArrowFlag
if (nLeftArrow)
{
- pOpenedObjStyle->SetArrowStart( GetArrowName(nLeftArrow), fArrowSize, true);
+ pOpenedObjStyle->SetArrowStart( GetArrowName(nLeftArrow), fArrowSize);
}
if (nRightArrow)
{
- pOpenedObjStyle->SetArrowEnd( GetArrowName(nRightArrow), fArrowSize, true);
+ pOpenedObjStyle->SetArrowEnd( GetArrowName(nRightArrow), fArrowSize);
}
}