diff options
Diffstat (limited to 'src/kbfxplasmacanvasgroupview.h')
-rw-r--r-- | src/kbfxplasmacanvasgroupview.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/kbfxplasmacanvasgroupview.h b/src/kbfxplasmacanvasgroupview.h index 2f79e2c..779d813 100644 --- a/src/kbfxplasmacanvasgroupview.h +++ b/src/kbfxplasmacanvasgroupview.h @@ -22,8 +22,8 @@ #ifndef KBFX_PLASMA_CANVAS_GROUP_VIEW_H #define KBFX_PLASMA_CANVAS_GROUP_VIEW_H -#include <qobject.h> -#include <qptrlist.h> +#include <tqobject.h> +#include <tqptrlist.h> #include "kbfxplasmacanvasgroup.h" /** @@ -31,20 +31,21 @@ This class will manager a list of Groups. **/ -class KbfxPlasmaCanvasGroupView:public QObject +class KbfxPlasmaCanvasGroupView:public TQObject { Q_OBJECT + TQ_OBJECT public: - typedef QPtrList<KbfxPlasmaCanvasGroup> groupPtrList; + typedef TQPtrList<KbfxPlasmaCanvasGroup> groupPtrList; KbfxPlasmaCanvasGroupView(); virtual ~KbfxPlasmaCanvasGroupView(); void addGroup ( KbfxPlasmaCanvasGroup* ); void deleteGroup ( KbfxPlasmaCanvasGroup* ); - KbfxPlasmaCanvasGroupView* contains ( KbfxPlasmaCanvasGroup* ); + KbfxPlasmaCanvasGroupView* tqcontains ( KbfxPlasmaCanvasGroup* ); virtual int rtti() {return 1006;} void predend ( KbfxPlasmaCanvasGroup* ); void append ( KbfxPlasmaCanvasGroup * ); @@ -56,8 +57,8 @@ class KbfxPlasmaCanvasGroupView:public QObject { return m_width; } - void setName ( QString name ); - QString name(); + void setName ( TQString name ); + TQString name(); bool expanded() { return m_fullExpand;} public slots: void foldGroupAll(); @@ -75,8 +76,8 @@ class KbfxPlasmaCanvasGroupView:public QObject int m_height; int m_width; bool m_fullExpand; - QString m_name; - QString m_iconPath; + TQString m_name; + TQString m_iconPath; KbfxPlasmaCanvasGroup * m_current; groupPtrList m_groupChain; //state variables |