diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-03 13:04:59 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-03-03 11:39:56 +0000 |
commit | 5adde1bf69828da955f5f8ae8d36a4bd52eee055 (patch) | |
tree | 19b20375684dd8bb328ceb59a7b035ad7d352bd9 /basegfx | |
parent | 83dccbadc2c6caa804039199915d4a8c1f3f2d5a (diff) |
loplugin:unuseddefaultparams various
Change-Id: Ibf8489c957b307156689de4c7cb8440ddd4e4546
Reviewed-on: https://gerrit.libreoffice.org/22852
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/inc/stringconversiontools.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/basegfx/source/inc/stringconversiontools.hxx b/basegfx/source/inc/stringconversiontools.hxx index 26fabdb53e34..c23fb5083a03 100644 --- a/basegfx/source/inc/stringconversiontools.hxx +++ b/basegfx/source/inc/stringconversiontools.hxx @@ -49,10 +49,9 @@ namespace basegfx inline bool isOnNumberChar(const OUString& rStr, const sal_Int32 nPos, - bool bSignAllowed = true, - bool bDotAllowed = true) + bool bSignAllowed = true) { - return isOnNumberChar(rStr[nPos], bSignAllowed, bDotAllowed); + return isOnNumberChar(rStr[nPos], bSignAllowed); } bool getDoubleChar(double& o_fRetval, |