diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:26:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:26:34 +0000 |
commit | 36e4074ba1536a63a121293b20663a38cad836b7 (patch) | |
tree | 5ec4cb3822a30ce8d43a9904931907ade1d7fe2c /librss | |
parent | 47c8a359c5276062c4bc17f0e82410f29081b502 (diff) | |
download | tdenetwork-36e4074ba1536a63a121293b20663a38cad836b7.tar.gz tdenetwork-36e4074ba1536a63a121293b20663a38cad836b7.zip |
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1158449 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'librss')
-rw-r--r-- | librss/article.h | 10 | ||||
-rw-r--r-- | librss/document.h | 4 | ||||
-rw-r--r-- | librss/global.h | 2 | ||||
-rw-r--r-- | librss/image.cpp | 2 | ||||
-rw-r--r-- | librss/image.h | 2 | ||||
-rw-r--r-- | librss/loader.cpp | 4 | ||||
-rw-r--r-- | librss/textinput.h | 4 | ||||
-rw-r--r-- | librss/tools_p.h | 4 |
8 files changed, 16 insertions, 16 deletions
diff --git a/librss/article.h b/librss/article.h index d6c4a937..a05ddb34 100644 --- a/librss/article.h +++ b/librss/article.h @@ -13,12 +13,12 @@ #include "global.h" -class QDateTime; -class QDomNode; +class TQDateTime; +class TQDomNode; template <class> -class QValueList; -class QString; -class QWidget; +class TQValueList; +class TQString; +class TQWidget; class KURL; class KURLLabel; diff --git a/librss/document.h b/librss/document.h index fb02feb5..70a90bc1 100644 --- a/librss/document.h +++ b/librss/document.h @@ -14,8 +14,8 @@ #include "article.h" #include "global.h" -class QDateTime; -class QDomDocument; +class TQDateTime; +class TQDomDocument; namespace RSS { diff --git a/librss/global.h b/librss/global.h index ca929af0..c7e4cdeb 100644 --- a/librss/global.h +++ b/librss/global.h @@ -16,7 +16,7 @@ #define LIBRSS_EXPORT KDE_EXPORT template <class> -class QValueList; +class TQValueList; namespace RSS { diff --git a/librss/image.cpp b/librss/image.cpp index 4ab66698..242c65aa 100644 --- a/librss/image.cpp +++ b/librss/image.cpp @@ -107,7 +107,7 @@ void Image::getPixmap() if (d->pixmapBuffer) return; - d->pixmapBuffer = new QBuffer; + d->pixmapBuffer = new TQBuffer; d->pixmapBuffer->open(IO_WriteOnly); KIO::Job *job = KIO::get(d->url, false, false); diff --git a/librss/image.h b/librss/image.h index eeef8222..d59a0e6a 100644 --- a/librss/image.h +++ b/librss/image.h @@ -15,7 +15,7 @@ #include <tqobject.h> -class QDomNode; +class TQDomNode; namespace KIO { diff --git a/librss/loader.cpp b/librss/loader.cpp index 696d4f86..5eecda1c 100644 --- a/librss/loader.cpp +++ b/librss/loader.cpp @@ -61,7 +61,7 @@ void FileRetriever::retrieveData(const KURL &url) if (d->buffer) return; - d->buffer = new QBuffer; + d->buffer = new TQBuffer; d->buffer->open(IO_WriteOnly); KIO::Job *job = KIO::get(url, false, false); @@ -134,7 +134,7 @@ void OutputRetriever::retrieveData(const KURL &url) if (d->buffer || d->process) return; - d->buffer = new QBuffer; + d->buffer = new TQBuffer; d->buffer->open(IO_WriteOnly); d->process = new KShellProcess(); diff --git a/librss/textinput.h b/librss/textinput.h index ab7652ac..44ade004 100644 --- a/librss/textinput.h +++ b/librss/textinput.h @@ -15,8 +15,8 @@ class KURL; -class QDomNode; -class QString; +class TQDomNode; +class TQString; namespace RSS { diff --git a/librss/tools_p.h b/librss/tools_p.h index 0d9c9801..da67251f 100644 --- a/librss/tools_p.h +++ b/librss/tools_p.h @@ -11,8 +11,8 @@ #ifndef LIBRSS_TOOLS_P_H #define LIBRSS_TOOLS_P_H -class QDomNode; -class QString; +class TQDomNode; +class TQString; namespace RSS { |