diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 12:43:24 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-02 09:11:52 +0900 |
| commit | 8ea77e27d61983f4ca5fe73d627fc000712abe9d (patch) | |
| tree | cafa43f82df7f4d74ca7af4af92219c52e253a49 /libkdchart/KDChartTableBase.h | |
| parent | a88e14ff2d3e94667afef9f7534ac87e14d8ba21 (diff) | |
| download | kmymoney-8ea77e27d61983f4ca5fe73d627fc000712abe9d.tar.gz kmymoney-8ea77e27d61983f4ca5fe73d627fc000712abe9d.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libkdchart/KDChartTableBase.h')
| -rw-r--r-- | libkdchart/KDChartTableBase.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libkdchart/KDChartTableBase.h b/libkdchart/KDChartTableBase.h index fd3c41d..e0b16b8 100644 --- a/libkdchart/KDChartTableBase.h +++ b/libkdchart/KDChartTableBase.h @@ -187,7 +187,7 @@ public slots: \param coordinate the number of the coordinate to be retrieved, normally 1 is the Y value and 2 is the X value. - \returns TRUE if the row and col are addressing a cell in the table. + \returns true if the row and col are addressing a cell in the table. \sa cellCoords, cellProp, cellContent, cellVal, setCell, setProp */ @@ -232,7 +232,7 @@ const double xVal = data.cellVal( r, c, 2 ).toDouble(); \endverbatim \param _prop the property set ID of the cell to be retrieved. - \returns TRUE if the row and col are addressing a cell in the table. + \returns true if the row and col are addressing a cell in the table. \sa cellCoord, cellCoords, cellContent, setCell, setProp */ @@ -373,7 +373,7 @@ const double xVal = data.cellVal( r, c, 2 ).toDouble(); \endverbatim special value KDCHART_POS_INFINITE to indicate positive infinite values - \returns TRUE if the value given is a positive infinite value. + \returns true if the value given is a positive infinite value. */ virtual bool isPosInfinite( double value ) const { @@ -389,7 +389,7 @@ const double xVal = data.cellVal( r, c, 2 ).toDouble(); \endverbatim special value KDCHART_NEG_INFINITE to indicate negative infinite values - \returns TRUE if the value given is a negative infinite value. + \returns true if the value given is a negative infinite value. */ virtual bool isNegInfinite( double value ) const { @@ -406,7 +406,7 @@ const double xVal = data.cellVal( r, c, 2 ).toDouble(); \endverbatim \note To improve runtime speed this virtual function may be reimplemented by classes derived from KDChartTableDataBase. - \returns TRUE if the value given is neither positive infinite nor negativr infinite. + \returns true if the value given is neither positive infinite nor negativr infinite. */ virtual bool isNormalDouble( double value ) const { @@ -423,7 +423,7 @@ const double xVal = data.cellVal( r, c, 2 ).toDouble(); \endverbatim \param value The TQVariant value to be tested and converted. \param dVal Points to the double variable to be filled with the converted value. - \returns TRUE if the value given is neither positive infinite nor negative + \returns true if the value given is neither positive infinite nor negative infinite, \c value is set to the converted value if the type of \c value is TQVariant::Double, otherwise it is not modified. */ |
