diff options
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. */ |