diff options
Diffstat (limited to 'knode/kncollection.h')
-rw-r--r-- | knode/kncollection.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/knode/kncollection.h b/knode/kncollection.h index 80907ca55..f6c4b9150 100644 --- a/knode/kncollection.h +++ b/knode/kncollection.h @@ -17,7 +17,7 @@ #ifndef KNCOLLECTION_H #define KNCOLLECTION_H -#include <qstring.h> +#include <tqstring.h> class KNCollectionViewItem; @@ -41,8 +41,8 @@ class KNCollection { virtual void updateListItem(); // info - virtual QString path()=0; - virtual bool readInfo(const QString &confPath)=0; + virtual TQString path()=0; + virtual bool readInfo(const TQString &confPath)=0; virtual void saveInfo()=0; // parent @@ -50,8 +50,8 @@ class KNCollection { virtual void setParent(KNCollection *p) { p_arent=p; } // name - virtual const QString& name() { return n_ame; } - void setName(const QString &s) { n_ame=s; } + virtual const TQString& name() { return n_ame; } + void setName(const TQString &s) { n_ame=s; } // count int count()const { return c_ount; } @@ -62,7 +62,7 @@ class KNCollection { protected: KNCollection *p_arent; KNCollectionViewItem *l_istItem; - QString n_ame; + TQString n_ame; int c_ount; }; |