diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-08 13:13:59 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-09 10:07:45 +0200 |
commit | c09b3e32372537be739182b02ae83a96386d1e1c (patch) | |
tree | 04e93ba798e8c36363792f2ba903b0f9c4ba21ea /sw/source/ui/vba | |
parent | af74913da2b63857a248ac8fc4fa438b7a8663ec (diff) |
loplugin:constantparam in sw
Change-Id: I8fa1af4a34770b71f6f4bb28b3313edf4875322b
Diffstat (limited to 'sw/source/ui/vba')
-rw-r--r-- | sw/source/ui/vba/vbadocumentproperties.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/vba/vbadocumentproperties.cxx b/sw/source/ui/vba/vbadocumentproperties.cxx index 9ccf945ae00c..7e1e651d6567 100644 --- a/sw/source/ui/vba/vbadocumentproperties.cxx +++ b/sw/source/ui/vba/vbadocumentproperties.cxx @@ -309,7 +309,7 @@ public: SwFEShell* pFEShell = mpDocShell->GetFEShell(); if(pFEShell) { - aReturn <<= pFEShell->GetLineCount(false); + aReturn <<= pFEShell->GetLineCount(); } } } |