diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-05 22:07:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-05 22:07:15 +0000 |
commit | 421b60af92c83b889f8903c2898f2bd07186fcd8 (patch) | |
tree | ad873a24c9438baed4942fda795430a4c3dc9a9a /src/kbfxplasmacanvasitemwrapper.h | |
parent | 39e896bddf25bf34cbf8be814d959181e2c1d1dd (diff) | |
download | kbfx-421b60af92c83b889f8903c2898f2bd07186fcd8.tar.gz kbfx-421b60af92c83b889f8903c2898f2bd07186fcd8.zip |
TQt4 port kbfx
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kbfx@1230544 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kbfxplasmacanvasitemwrapper.h')
-rw-r--r-- | src/kbfxplasmacanvasitemwrapper.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/kbfxplasmacanvasitemwrapper.h b/src/kbfxplasmacanvasitemwrapper.h index 54e70b2..ba1954b 100644 --- a/src/kbfxplasmacanvasitemwrapper.h +++ b/src/kbfxplasmacanvasitemwrapper.h @@ -24,23 +24,24 @@ #include "kbfxplasmacanvasitem.h" #include "kbfxplasmaindexitem.h" -#include <qcanvas.h> +#include <tqcanvas.h> -class KbfxPlasmaCanvasItemWrapper:public QObject +class KbfxPlasmaCanvasItemWrapper:public TQObject { Q_OBJECT + TQ_OBJECT public: - KbfxPlasmaCanvasItemWrapper ( QCanvas * canvas ); + KbfxPlasmaCanvasItemWrapper ( TQCanvas * canvas ); ~KbfxPlasmaCanvasItemWrapper(); - QCanvasItem* item ( KbfxPlasmaCanvasItem::Type __type ); - QCanvasItem* itemIndex ( KbfxPlasmaCanvasItem::Type __type ); + TQCanvasItem* item ( KbfxPlasmaCanvasItem::Type __type ); + TQCanvasItem* itemIndex ( KbfxPlasmaCanvasItem::Type __type ); private: - QCanvas * m_canvas; + TQCanvas * m_canvas; //none |