summaryrefslogtreecommitdiffstats
path: root/libkdchart/KDChartDataIntern.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkdchart/KDChartDataIntern.cpp')
-rw-r--r--libkdchart/KDChartDataIntern.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/libkdchart/KDChartDataIntern.cpp b/libkdchart/KDChartDataIntern.cpp
index 21640f4..fe4ae2d 100644
--- a/libkdchart/KDChartDataIntern.cpp
+++ b/libkdchart/KDChartDataIntern.cpp
@@ -38,7 +38,7 @@
an extra one for the abscissa axis.
Ordinate values can either be of type double or non-existant,
- abscissa values can either be of type double or QDateTime or non-existant.
+ abscissa values can either be of type double or TQDateTime or non-existant.
\note All methods returning one of the data values (or one of the data
types, resp.) expect a valNo parameter with either a 1 for the first value
@@ -73,9 +73,9 @@
/**
- \fn KDChartData::KDChartData( double yValue, QDateTime xValue )
+ \fn KDChartData::KDChartData( double yValue, TQDateTime xValue )
- Constructor. Assigns a double value and a QDateTime value to this object.
+ Constructor. Assigns a double value and a TQDateTime value to this object.
\param yValue the double value which this object should represent.
\param xValue the position on the abscissa axis which this object
@@ -84,7 +84,7 @@
/**
- \fn KDChartData::KDChartData( const QString& value )
+ \fn KDChartData::KDChartData( const TQString& value )
Constructor. Assigns a string value to this object.
@@ -98,7 +98,7 @@
/**
\fn bool KDChartData::hasValue(int) const
- Returns true if the object represents a value (double or QString)
+ Returns true if the object represents a value (double or TQString)
and false otherwise.
\return true if the object represents a value
@@ -107,19 +107,19 @@
/**
\fn bool KDChartData::isDateTime(int) const
- Returns true if the object represents a QDateTime value and false
+ Returns true if the object represents a TQDateTime value and false
otherwise.
- \return true if the object represents a QDateTime value
+ \return true if the object represents a TQDateTime value
*/
/**
\fn bool KDChartData::isString(int) const
- Returns true if the object represents a QString value and false
+ Returns true if the object represents a TQString value and false
otherwise.
- \return true if the object represents a QString value
+ \return true if the object represents a TQString value
*/
/**
@@ -173,23 +173,23 @@
*/
/**
- \fn QDateTime KDChartData::dateTimeValue( int valNo=1 ) const
+ \fn TQDateTime KDChartData::dateTimeValue( int valNo=1 ) const
- Returns the QDateTime value represented by this object,
- or QDateTime() if this object does not represent a QDateTime value.
+ Returns the TQDateTime value represented by this object,
+ or TQDateTime() if this object does not represent a TQDateTime value.
You may use isDateTime() to check if it
is appropriate to call this function.
- \return the QDateTime value represented by this object,
- or QDateTime() if this object does not represent a QDateTime value
+ \return the TQDateTime value represented by this object,
+ or TQDateTime() if this object does not represent a TQDateTime value
*/
/**
- \fn QString KDChartData::stringValue( int valNo=1 ) const
+ \fn TQString KDChartData::stringValue( int valNo=1 ) const
Returns the string value represented by this object,
- or QString::null if this object does not represent a string value.
+ or TQString() if this object does not represent a string value.
You may use isString() to check if it
is appropriate to call this function.
@@ -198,7 +198,7 @@
in extra data cells.
\return the string value represented by this object,
- or QString::null if this object does not represent a string value
+ or TQString() if this object does not represent a string value
*/