diff options
Diffstat (limited to 'src/fetch/amazonfetcher.h')
-rw-r--r-- | src/fetch/amazonfetcher.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fetch/amazonfetcher.h b/src/fetch/amazonfetcher.h index a1ddc6b..03aed7d 100644 --- a/src/fetch/amazonfetcher.h +++ b/src/fetch/amazonfetcher.h @@ -28,7 +28,7 @@ class KLineEdit; class TQCheckBox; class TQLabel; -namespace KIO { +namespace TDEIO { class Job; } @@ -81,7 +81,7 @@ public: virtual Data::EntryPtr fetchEntry(uint uid); virtual Type type() const { return Amazon; } virtual bool canFetch(int type) const; - virtual void readConfigHook(const KConfigGroup& config); + virtual void readConfigHook(const TDEConfigGroup& config); virtual void updateEntry(Data::EntryPtr entry); @@ -104,8 +104,8 @@ public: static TQString defaultName(); private slots: - void slotData(KIO::Job* job, const TQByteArray& data); - void slotComplete(KIO::Job* job); + void slotData(TDEIO::Job* job, const TQByteArray& data); + void slotComplete(TDEIO::Job* job); private: void initXSLTHandler(); @@ -128,7 +128,7 @@ private: int m_total; int m_numResults; TQMap<int, Data::EntryPtr> m_entries; // they get modified after collection is created, so can't be const - TQGuardedPtr<KIO::Job> m_job; + TQGuardedPtr<TDEIO::Job> m_job; FetchKey m_key; TQString m_value; @@ -143,7 +143,7 @@ Q_OBJECT public: ConfigWidget(TQWidget* parent_, const AmazonFetcher* fetcher = 0); - virtual void saveConfig(KConfigGroup& config); + virtual void saveConfig(TDEConfigGroup& config); virtual TQString preferredName() const; private slots: |