diff options
Diffstat (limited to 'knewsticker/newssourcedlgimpl.h')
-rw-r--r-- | knewsticker/newssourcedlgimpl.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/knewsticker/newssourcedlgimpl.h b/knewsticker/newssourcedlgimpl.h index 71bb6964..86ed7c24 100644 --- a/knewsticker/newssourcedlgimpl.h +++ b/knewsticker/newssourcedlgimpl.h @@ -16,7 +16,7 @@ #include <kdialogbase.h> #include <kurl.h> -#include <qpixmap.h> +#include <tqpixmap.h> class XMLNewsSource; class NewsIconMgr; @@ -28,27 +28,27 @@ class SuggestProgressDlg : public KDialogBase Q_OBJECT public: - SuggestProgressDlg(const KURL &url, QWidget *parent, const char *name = 0); + SuggestProgressDlg(const KURL &url, TQWidget *parent, const char *name = 0); virtual ~SuggestProgressDlg(); XMLNewsSource *xmlSrc() { return m_xmlSrc; } - QPixmap icon() const { return m_icon; } + TQPixmap icon() const { return m_icon; } const KURL &iconURL() const { return m_iconURL; } private slots: void slotTimeoutTick(); void slotLoadComplete(XMLNewsSource *, bool); - void slotGotIcon(const KURL &, const QPixmap &); + void slotGotIcon(const KURL &, const TQPixmap &); private: bool m_gotSourceFile; bool m_gotIcon; XMLNewsSource *m_xmlSrc; bool m_succeeded; - QPixmap m_icon; + TQPixmap m_icon; KURL m_iconURL; - QProgressBar *m_progressBar; - QTimer *m_timeoutTimer; + TQProgressBar *m_progressBar; + TQTimer *m_timeoutTimer; }; class NewsSourceDlgImpl : public NewsSourceDlg @@ -56,7 +56,7 @@ class NewsSourceDlgImpl : public NewsSourceDlg Q_OBJECT public: - NewsSourceDlgImpl(QWidget * = 0, const char * = 0, bool = FALSE, WFlags = 0); + NewsSourceDlgImpl(TQWidget * = 0, const char * = 0, bool = FALSE, WFlags = 0); void setup(const NewsSourceBase::Data &, bool); @@ -73,7 +73,7 @@ class NewsSourceDlgImpl : public NewsSourceDlg bool validateURL(const KURL &); private slots: - void slotGotIcon(const KURL &, const QPixmap &); + void slotGotIcon(const KURL &, const TQPixmap &); private: bool m_modified; |