diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /knode/kncollection.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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; }; |