diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
commit | e654398e46e37abf457b2b1122ab898d2c51c49f (patch) | |
tree | d39ee6440f3c3663c3ead84a2d4cc2d034667e96 /juk/webimagefetcher.h | |
parent | e4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff) | |
download | tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'juk/webimagefetcher.h')
-rw-r--r-- | juk/webimagefetcher.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/juk/webimagefetcher.h b/juk/webimagefetcher.h index 796e205e..9706e6ad 100644 --- a/juk/webimagefetcher.h +++ b/juk/webimagefetcher.h @@ -19,9 +19,9 @@ #include <kdialogbase.h> -#include <qpixmap.h> -#include <qstringlist.h> -#include <qregexp.h> +#include <tqpixmap.h> +#include <tqstringlist.h> +#include <tqregexp.h> #include "filehandle.h" @@ -36,28 +36,28 @@ class WebImage public: WebImage(); - WebImage(const QString &imageURL, - const QString &thumbURL, + WebImage(const TQString &imageURL, + const TQString &thumbURL, int width, int height); - QString imageURL() const { return m_imageURL; } - QString thumbURL() const { return m_thumbURL; } - QString size() const { return m_size; } + TQString imageURL() const { return m_imageURL; } + TQString thumbURL() const { return m_thumbURL; } + TQString size() const { return m_size; } private: - QString m_imageURL; - QString m_thumbURL; - QString m_size; + TQString m_imageURL; + TQString m_thumbURL; + TQString m_size; }; -typedef QValueList<WebImage> WebImageList; +typedef TQValueList<WebImage> WebImageList; class WebImageFetcher : public QObject { Q_OBJECT public: - WebImageFetcher(QObject *parent); + WebImageFetcher(TQObject *parent); ~WebImageFetcher(); void setFile(const FileHandle &file); @@ -82,11 +82,11 @@ private slots: private: FileHandle m_file; - QString m_searchString; - QString m_loadedQuery; + TQString m_searchString; + TQString m_loadedQuery; WebImageList m_imageList; uint m_selectedIndex; - QHttp *m_connection; + TQHttp *m_connection; int m_connectionId; WebImageFetcherDialog *m_dialog; }; |