Fix comments to match new reality: these are no longer optional parameters
Change-Id: Idf054aa4ef095ce37f05a01adf59cb450a6906c6
This commit is contained in:
@@ -46,7 +46,7 @@ public:
|
|||||||
bool IsNumberFormat( const OUString& rString, /// input string
|
bool IsNumberFormat( const OUString& rString, /// input string
|
||||||
short& F_Type, /// format type (in + out)
|
short& F_Type, /// format type (in + out)
|
||||||
double& fOutNumber, /// value determined (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
|
/// after IsNumberFormat: get decimal position
|
||||||
short GetDecPos() const { return nDecPos; }
|
short GetDecPos() const { return nDecPos; }
|
||||||
@@ -294,7 +294,7 @@ private:
|
|||||||
// Get currency symbol and advance string position
|
// Get currency symbol and advance string position
|
||||||
bool GetCurrency( const OUString& rString,
|
bool GetCurrency( const OUString& rString,
|
||||||
sal_Int32& nPos,
|
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
|
// Get symbol AM or PM and advance string position
|
||||||
bool GetTimeAmPm( const OUString& rString,
|
bool GetTimeAmPm( const OUString& rString,
|
||||||
@@ -335,7 +335,7 @@ private:
|
|||||||
// Conversion of date to number
|
// Conversion of date to number
|
||||||
bool GetDateRef( double& fDays, // OUT: days diff to null date
|
bool GetDateRef( double& fDays, // OUT: days diff to null date
|
||||||
sal_uInt16& nCounter, // Count of date substrings
|
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
|
// Analyze start of string
|
||||||
bool ScanStartString( const OUString& rString,
|
bool ScanStartString( const OUString& rString,
|
||||||
@@ -369,7 +369,7 @@ private:
|
|||||||
|
|
||||||
// Main analyzing function
|
// Main analyzing function
|
||||||
bool IsNumberFormatMain( const OUString& rString,
|
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 );
|
static inline bool MyIsdigit( sal_Unicode c );
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user