summaryrefslogtreecommitdiffstats
path: root/libkdchart/KDChartTableDataWrapper.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-05 06:00:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-05 06:00:29 +0000
commitfecb0e67b23e8b83ba7fc881bb57bc48c0852d62 (patch)
tree6b8614802f0d01b353bc9ba78aff2090846c198e /libkdchart/KDChartTableDataWrapper.h
parentdadc34655c3ab961b0b0b94a10eaaba710f0b5e8 (diff)
downloadkmymoney-fecb0e67.tar.gz
kmymoney-fecb0e67.zip
TQt4 port kmymoney
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmymoney@1239855 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkdchart/KDChartTableDataWrapper.h')
-rw-r--r--libkdchart/KDChartTableDataWrapper.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/libkdchart/KDChartTableDataWrapper.h b/libkdchart/KDChartTableDataWrapper.h
index 90b557d..3c3a8db 100644
--- a/libkdchart/KDChartTableDataWrapper.h
+++ b/libkdchart/KDChartTableDataWrapper.h
@@ -1,24 +1,25 @@
#ifndef KDCHARTTABLEDATAWRAPPER_H
#define KDCHARTTABLEDATAWRAPPER_H
-#include <qobject.h>
+#include <tqobject.h>
#include <KDChartTable.h>
class KDChartData;
-class KDChartTableDataWrapper :public QObject
+class KDChartTableDataWrapper :public TQObject
{
Q_OBJECT
+ TQ_OBJECT
public:
KDChartTableDataWrapper( KDChartTableData* );
public slots:
/*
- QVariant cell( uint _row, uint _col );
+ TQVariant cell( uint _row, uint _col );
void setCell( uint _row, uint _col,
- const QVariant& _value1,
- const QVariant& _value2=QVariant() );
+ const TQVariant& _value1,
+ const TQVariant& _value2=TQVariant() );
void setCell( uint _row, uint _col, double _element );
- // PENDING(blackie) This one do not work, due to QSA bug regarding function overloading.
- void setCell( uint _row, uint _col, QString _element );
+ // PENDING(blackie) This one do not work, due to TQSA bug regarding function overloading.
+ void setCell( uint _row, uint _col, TQString _element );
*/
private:
KDChartTableData* _data;