diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 18:11:49 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-03 19:23:45 +0900 |
commit | 0bd9d5459891e6fb17ee6802878f85e217cb9f54 (patch) | |
tree | 962f6ea26d1fab041fe3476fbbd64132ab8ada1b /kchart/kdchart/KDChartTableBase.h | |
parent | cb258b7e39ffa5662b57e7d9006e69172a378d7e (diff) | |
download | koffice-r14.1.4.tar.gz koffice-r14.1.4.zip |
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit cf85b9c285a2b9baa87c9d0cb9d683b48e82a475)
Diffstat (limited to 'kchart/kdchart/KDChartTableBase.h')
-rw-r--r-- | kchart/kdchart/KDChartTableBase.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kchart/kdchart/KDChartTableBase.h b/kchart/kdchart/KDChartTableBase.h index fd3c41de9..e0b16b896 100644 --- a/kchart/kdchart/KDChartTableBase.h +++ b/kchart/kdchart/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. */ |