summaryrefslogtreecommitdiffstats
path: root/knewsticker/common/newsiconmgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'knewsticker/common/newsiconmgr.h')
-rw-r--r--knewsticker/common/newsiconmgr.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/knewsticker/common/newsiconmgr.h b/knewsticker/common/newsiconmgr.h
index e4c6b657..30071155 100644
--- a/knewsticker/common/newsiconmgr.h
+++ b/knewsticker/common/newsiconmgr.h
@@ -11,8 +11,8 @@
#ifndef NEWSICONMGR_H
#define NEWSICONMGR_H
-#include <qobject.h>
-#include <qpixmap.h>
+#include <tqobject.h>
+#include <tqpixmap.h>
#include <dcopobject.h>
#include <kio/job.h>
@@ -21,9 +21,9 @@
class DCOPClient;
struct KIODownload;
-typedef QMap<KIO::Job *, KIODownload> KIODownloadMap;
+typedef TQMap<KIO::Job *, KIODownload> KIODownloadMap;
-class NewsIconMgr : public QObject, public DCOPObject
+class NewsIconMgr : public TQObject, public DCOPObject
{
Q_OBJECT
K_DCOP
@@ -32,26 +32,26 @@ class NewsIconMgr : public QObject, public DCOPObject
static NewsIconMgr *self();
void getIcon(const KURL &);
- bool isStdIcon(const QPixmap &) const;
+ bool isStdIcon(const TQPixmap &) const;
k_dcop:
- void slotGotIcon(bool, QString, QString);
+ void slotGotIcon(bool, TQString, TQString);
signals:
- void gotIcon(const KURL &, const QPixmap &);
+ void gotIcon(const KURL &, const TQPixmap &);
protected:
- NewsIconMgr(QObject * = 0L, const char * = 0L);
+ NewsIconMgr(TQObject * = 0L, const char * = 0L);
~NewsIconMgr();
private slots:
- void slotData(KIO::Job *, const QByteArray &);
+ void slotData(KIO::Job *, const TQByteArray &);
void slotResult(KIO::Job *);
private:
- QString favicon(const KURL &) const;
+ TQString favicon(const KURL &) const;
- QPixmap m_stdIcon;
+ TQPixmap m_stdIcon;
KIODownloadMap m_kioDownload;
static NewsIconMgr *m_instance;