summaryrefslogtreecommitdiffstats
path: root/juk/webimagefetcherdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'juk/webimagefetcherdialog.h')
-rw-r--r--juk/webimagefetcherdialog.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/juk/webimagefetcherdialog.h b/juk/webimagefetcherdialog.h
index a4424a2f..d418a947 100644
--- a/juk/webimagefetcherdialog.h
+++ b/juk/webimagefetcherdialog.h
@@ -31,11 +31,11 @@ class WebImageFetcherDialog : public KDialogBase
public:
WebImageFetcherDialog(const WebImageList &urlList,
const FileHandle &file,
- QWidget *parent = 0);
+ TQWidget *parent = 0);
virtual ~WebImageFetcherDialog();
- QPixmap result() const { return m_pixmap; }
+ TQPixmap result() const { return m_pixmap; }
void setLayout();
void setImageList(const WebImageList &urlList);
@@ -53,13 +53,13 @@ protected slots:
void slotOk();
void slotCancel();
void slotUser1();
- void showCreditURL(const QString &url);
+ void showCreditURL(const TQString &url);
private:
- QPixmap fetchedImage(uint index) const;
- QPixmap pixmapFromURL(const KURL &url) const;
+ TQPixmap fetchedImage(uint index) const;
+ TQPixmap pixmapFromURL(const KURL &url) const;
- QPixmap m_pixmap;
+ TQPixmap m_pixmap;
WebImageList m_imageList;
KIconView *m_iconWidget;
FileHandle m_file;
@@ -70,21 +70,21 @@ namespace KIO
class TransferJob;
}
-class CoverIconViewItem : public QObject, public KIconViewItem
+class CoverIconViewItem : public TQObject, public KIconViewItem
{
Q_OBJECT
public:
- CoverIconViewItem(QIconView *parent, const WebImage &image);
+ CoverIconViewItem(TQIconView *parent, const WebImage &image);
~CoverIconViewItem();
private slots:
- void imageData(KIO::Job *job, const QByteArray &data);
+ void imageData(KIO::Job *job, const TQByteArray &data);
void imageResult(KIO::Job* job);
private:
- QByteArray m_buffer;
- QGuardedPtr<KIO::TransferJob> m_job;
+ TQByteArray m_buffer;
+ TQGuardedPtr<KIO::TransferJob> m_job;
};
#endif