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 /akregator/src/dragobjects.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 'akregator/src/dragobjects.h')
-rw-r--r-- | akregator/src/dragobjects.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/akregator/src/dragobjects.h b/akregator/src/dragobjects.h index b83514c3c..ac95b0eed 100644 --- a/akregator/src/dragobjects.h +++ b/akregator/src/dragobjects.h @@ -30,10 +30,10 @@ #include <kurl.h> #include <kurldrag.h> -#include <qstring.h> -#include <qvaluelist.h> +#include <tqstring.h> +#include <tqvaluelist.h> -typedef class QMemArray<char> QByteArray; +typedef class TQMemArray<char> QByteArray; namespace Akregator { @@ -41,8 +41,8 @@ class Article; struct ArticleDragItem { - QString feedURL; - QString guid; + TQString feedURL; + TQString guid; }; class ArticleDrag : public KURLDrag @@ -50,21 +50,21 @@ class ArticleDrag : public KURLDrag public: - ArticleDrag(const QValueList<Article>& articles, QWidget* dragSource=0, const char* name=0); + ArticleDrag(const TQValueList<Article>& articles, TQWidget* dragSource=0, const char* name=0); - static bool canDecode(const QMimeSource* e); - static bool decode(const QMimeSource* e, QValueList<ArticleDragItem>& articles); + static bool canDecode(const TQMimeSource* e); + static bool decode(const TQMimeSource* e, TQValueList<ArticleDragItem>& articles); protected: - virtual QByteArray encodedData(const char* mime) const; + virtual TQByteArray encodedData(const char* mime) const; virtual const char* format(int i) const; private: - static QValueList<ArticleDragItem> articlesToDragItems(const QValueList<Article>& articles); - static KURL::List articleURLs(const QValueList<Article>& articles); - QValueList<ArticleDragItem> m_items; + static TQValueList<ArticleDragItem> articlesToDragItems(const TQValueList<Article>& articles); + static KURL::List articleURLs(const TQValueList<Article>& articles); + TQValueList<ArticleDragItem> m_items; }; } // namespace Akregator |