diff options
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, |