summaryrefslogtreecommitdiffstats
path: root/kchart/kdchart
diff options
context:
space:
mode:
Diffstat (limited to 'kchart/kdchart')
-rw-r--r--kchart/kdchart/KDChartAxisParams.h4
-rw-r--r--kchart/kdchart/KDChartParams.h6
-rw-r--r--kchart/kdchart/KDChartPropertySet.h4
-rw-r--r--kchart/kdchart/KDChartTableBase.cpp4
-rw-r--r--kchart/kdchart/KDChartTableBase.h2
5 files changed, 10 insertions, 10 deletions
diff --git a/kchart/kdchart/KDChartAxisParams.h b/kchart/kdchart/KDChartAxisParams.h
index 18f4a6bf..b5819709 100644
--- a/kchart/kdchart/KDChartAxisParams.h
+++ b/kchart/kdchart/KDChartAxisParams.h
@@ -132,7 +132,7 @@ class KDChartParams;
class KDCHART_EXPORT KDChartAxisParams : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+ TQ_OBJECT
Q_ENUMS(AxisType)
Q_ENUMS(AxisPos)
Q_ENUMS(AxisAreaMode)
@@ -141,7 +141,7 @@ class KDCHART_EXPORT KDChartAxisParams : public TQObject
Q_ENUMS(ValueScale)
// Neede by TQSA
- Q_ENUMS( Qt::PenStyle )
+ Q_ENUMS( PenStyle )
public:
diff --git a/kchart/kdchart/KDChartParams.h b/kchart/kdchart/KDChartParams.h
index d090a96f..7196ef2c 100644
--- a/kchart/kdchart/KDChartParams.h
+++ b/kchart/kdchart/KDChartParams.h
@@ -158,9 +158,9 @@ class KDCHART_EXPORT KDChartParams : public TQObject
Q_ENUMS(HdFtPos)
// Needed for TQSA
- Q_ENUMS( Qt::BrushStyle )
- Q_ENUMS( Qt::PenStyle )
- Q_ENUMS( Qt::Orientation )
+ Q_ENUMS( BrushStyle )
+ Q_ENUMS( PenStyle )
+ Q_ENUMS( Orientation )
public slots: // PENDING(blackie) merge public slots into one section.
diff --git a/kchart/kdchart/KDChartPropertySet.h b/kchart/kdchart/KDChartPropertySet.h
index 54ece25d..a3e94953 100644
--- a/kchart/kdchart/KDChartPropertySet.h
+++ b/kchart/kdchart/KDChartPropertySet.h
@@ -66,11 +66,11 @@ instead of the value that is stored locally.
class KDCHART_EXPORT KDChartPropertySet :public TQObject
{
Q_OBJECT
- TQ_OBJECT
+ TQ_OBJECT
Q_ENUMS( SpecialDataPropertyID )
// Required by TQSA
- Q_ENUMS( Qt::PenStyle )
+ Q_ENUMS( PenStyle )
friend class KDChartParams;
diff --git a/kchart/kdchart/KDChartTableBase.cpp b/kchart/kdchart/KDChartTableBase.cpp
index da0d1d92..1ebfa9fd 100644
--- a/kchart/kdchart/KDChartTableBase.cpp
+++ b/kchart/kdchart/KDChartTableBase.cpp
@@ -56,7 +56,7 @@
You may adjust or modify your table like this:
\li Entering the data can be done either manually using \c setCell()
- or by passing a TQTable to the \c importFromTQTable() function.
+ or by passing a TQTable to the \c importFromQTable() function.
\li Performance of KD Chart can be increased by specifying the number
of rows and or the number of columns actually used: \c setUsedRows()
@@ -740,7 +740,7 @@ uint KDChartTableDataBase::lastPositiveCellInColumn( uint col, int coordinate )
}
-void KDChartTableDataBase::importFromTQTable( TQTable* table )
+void KDChartTableDataBase::importFromQTable( TQTable* table )
{
if( table->numRows() > (int)rows() ||
table->numCols() > (int)cols() )
diff --git a/kchart/kdchart/KDChartTableBase.h b/kchart/kdchart/KDChartTableBase.h
index 620597f7..b79e6e75 100644
--- a/kchart/kdchart/KDChartTableBase.h
+++ b/kchart/kdchart/KDChartTableBase.h
@@ -435,7 +435,7 @@ const double xVal = data.cellVal( r, c, 2 ).toDouble(); \endverbatim
return isNormalDouble( dVal );
}
- virtual void importFromTQTable( TQTable* table );
+ virtual void importFromQTable( TQTable* table );
virtual double maxValue( int coordinate=1 ) const;
virtual double minValue( int coordinate=1, bool bOnlyGTZero=false ) const;