diff options
Diffstat (limited to 'src/fetch/yahoofetcher.h')
-rw-r--r-- | src/fetch/yahoofetcher.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fetch/yahoofetcher.h b/src/fetch/yahoofetcher.h index 1620520..efaf95f 100644 --- a/src/fetch/yahoofetcher.h +++ b/src/fetch/yahoofetcher.h @@ -25,7 +25,7 @@ namespace Tellico { #include <tqcstring.h> // for TQByteArray #include <tqguardedptr.h> -namespace KIO { +namespace TDEIO { class Job; } @@ -58,7 +58,7 @@ public: virtual Data::EntryPtr fetchEntry(uint uid); virtual Type type() const { return Yahoo; } virtual bool canFetch(int type) const; - virtual void readConfigHook(const KConfigGroup& config); + virtual void readConfigHook(const TDEConfigGroup& config); virtual void updateEntry(Data::EntryPtr entry); @@ -70,7 +70,7 @@ public: class ConfigWidget : public Fetch::ConfigWidget { public: ConfigWidget(TQWidget* parent_, const YahooFetcher* fetcher = 0); - virtual void saveConfig(KConfigGroup&) {} + virtual void saveConfig(TDEConfigGroup&) {} virtual TQString preferredName() const; }; friend class ConfigWidget; @@ -78,8 +78,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(); @@ -94,7 +94,7 @@ private: TQByteArray m_data; 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; |