summaryrefslogtreecommitdiffstats
path: root/juk/webimagefetcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'juk/webimagefetcher.h')
-rw-r--r--juk/webimagefetcher.h32
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;
};