summaryrefslogtreecommitdiffstats
path: root/svl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-08-11 09:09:40 +0300
committerTor Lillqvist <tml@collabora.com>2016-08-11 09:09:40 +0300
commit6a2cc612decea57b9c3ab31f2f32aa2126c06cf7 (patch)
tree2488cec6dbfbf0fbcf584290c330b1c6aa6e9291 /svl
parentloplugin:constantparam (diff)
downloadcore-6a2cc612decea57b9c3ab31f2f32aa2126c06cf7.tar.gz
core-6a2cc612decea57b9c3ab31f2f32aa2126c06cf7.zip
Fix comments to match new reality: these are no longer optional parameters
Change-Id: Idf054aa4ef095ce37f05a01adf59cb450a6906c6
Diffstat (limited to 'svl')
-rw-r--r--svl/source/numbers/zforfind.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svl/source/numbers/zforfind.hxx b/svl/source/numbers/zforfind.hxx
index e7b7a60effb9..5d6ce67a4efd 100644
--- a/svl/source/numbers/zforfind.hxx
+++ b/svl/source/numbers/zforfind.hxx
@@ -46,7 +46,7 @@ public:
bool IsNumberFormat( const OUString& rString, /// input string
short& F_Type, /// format type (in + out)
double& fOutNumber, /// value determined (out)
- const SvNumberformat* pFormat); /// optional a number format to which compare against
+ const SvNumberformat* pFormat); /// number format to which compare against
/// after IsNumberFormat: get decimal position
short GetDecPos() const { return nDecPos; }
@@ -294,7 +294,7 @@ private:
// Get currency symbol and advance string position
bool GetCurrency( const OUString& rString,
sal_Int32& nPos,
- const SvNumberformat* pFormat ); // optional number format to match against
+ const SvNumberformat* pFormat ); // number format to match against
// Get symbol AM or PM and advance string position
bool GetTimeAmPm( const OUString& rString,
@@ -335,7 +335,7 @@ private:
// Conversion of date to number
bool GetDateRef( double& fDays, // OUT: days diff to null date
sal_uInt16& nCounter, // Count of date substrings
- const SvNumberformat* pFormat ); // optional number format to match against
+ const SvNumberformat* pFormat ); // number format to match against
// Analyze start of string
bool ScanStartString( const OUString& rString,
@@ -369,7 +369,7 @@ private:
// Main analyzing function
bool IsNumberFormatMain( const OUString& rString,
- const SvNumberformat* pFormat); // optional number format to match against
+ const SvNumberformat* pFormat); // number format to match against
static inline bool MyIsdigit( sal_Unicode c );