summaryrefslogtreecommitdiffstats
path: root/basegfx/source/inc/stringconversiontools.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/inc/stringconversiontools.hxx')
-rw-r--r--basegfx/source/inc/stringconversiontools.hxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/basegfx/source/inc/stringconversiontools.hxx b/basegfx/source/inc/stringconversiontools.hxx
index b49804849855..f2ccb1ac3324 100644
--- a/basegfx/source/inc/stringconversiontools.hxx
+++ b/basegfx/source/inc/stringconversiontools.hxx
@@ -36,22 +36,20 @@ namespace basegfx
const sal_Int32 nLen);
inline bool isOnNumberChar(const sal_Unicode aChar,
- bool bSignAllowed,
- bool bDotAllowed)
+ bool bSignAllowed)
{
const bool bPredicate( (u'0' <= aChar && u'9' >= aChar)
|| (bSignAllowed && u'+' == aChar)
|| (bSignAllowed && u'-' == aChar)
- || (bDotAllowed && u'.' == aChar));
+ || (u'.' == aChar));
return bPredicate;
}
inline bool isOnNumberChar(const OUString& rStr,
- const sal_Int32 nPos,
- bool bSignAllowed = true)
+ const sal_Int32 nPos)
{
- return isOnNumberChar(rStr[nPos], bSignAllowed, true);
+ return isOnNumberChar(rStr[nPos], true/*bSignAllowed*/);
}
bool getDoubleChar(double& o_fRetval,