diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:49:52 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:49:52 +0000 |
commit | cfc42a28c327b96c6a2afee92af3bac1a479eb8a (patch) | |
tree | e3219edf5f827eaa4db3feb509a17846a1a5a752 /kteatime/tealist.h | |
parent | a73fc4d7e66fe0824313aa4e9a650c4cddef6e9f (diff) | |
download | tdetoys-cfc42a28c327b96c6a2afee92af3bac1a479eb8a.tar.gz tdetoys-cfc42a28c327b96c6a2afee92af3bac1a479eb8a.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdetoys@1157650 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kteatime/tealist.h')
-rw-r--r-- | kteatime/tealist.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kteatime/tealist.h b/kteatime/tealist.h index 8d025c8..f526f9a 100644 --- a/kteatime/tealist.h +++ b/kteatime/tealist.h @@ -8,7 +8,7 @@ #ifndef TEALIST_H #define TEALIST_H -#include <qstring.h> +#include <tqstring.h> class QListView; class QListViewItem; @@ -18,20 +18,20 @@ class TeaListItem : public QListViewItem { public: - TeaListItem(QListView *parent); - TeaListItem(QListView *parent, QListViewItem *after); + TeaListItem(TQListView *parent); + TeaListItem(TQListView *parent, TQListViewItem *after); ~TeaListItem(); int time(); - QString name(); + TQString name(); void setTime(int v); - void setName(const QString &n); + void setName(const TQString &n); private: int tim; - QString nam; + TQString nam; }; -QString int2time(int t); +TQString int2time(int t); #endif |