diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:14:31 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:14:31 -0600 |
commit | 145d30f0b8cbacc3599379e8717299734f3bb534 (patch) | |
tree | 3713677dce079619063612b12788282fd32e53af /src/fetch/animenfofetcher.h | |
parent | 5b6d393e0a2c88cce8f433607c091ae883ef54f9 (diff) | |
download | tellico-145d30f0b8cbacc3599379e8717299734f3bb534.tar.gz tellico-145d30f0b8cbacc3599379e8717299734f3bb534.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/fetch/animenfofetcher.h')
-rw-r--r-- | src/fetch/animenfofetcher.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fetch/animenfofetcher.h b/src/fetch/animenfofetcher.h index b6ba291..e8540db 100644 --- a/src/fetch/animenfofetcher.h +++ b/src/fetch/animenfofetcher.h @@ -20,7 +20,7 @@ #include <tqcstring.h> // for TQByteArray #include <tqguardedptr.h> -namespace KIO { +namespace TDEIO { class Job; } @@ -49,7 +49,7 @@ public: virtual Data::EntryPtr fetchEntry(uint uid); virtual Type type() const { return AnimeNfo; } virtual bool canFetch(int type) const; - virtual void readConfigHook(const KConfigGroup& config); + virtual void readConfigHook(const TDEConfigGroup& config); virtual void updateEntry(Data::EntryPtr entry); @@ -58,7 +58,7 @@ public: class ConfigWidget : public Fetch::ConfigWidget { public: ConfigWidget(TQWidget* parent_); - virtual void saveConfig(KConfigGroup&) {} + virtual void saveConfig(TDEConfigGroup&) {} virtual TQString preferredName() const; }; friend class ConfigWidget; @@ -66,8 +66,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: Data::EntryPtr parseEntry(const TQString& str); @@ -76,7 +76,7 @@ private: int m_total; TQMap<int, Data::EntryPtr> m_entries; TQMap<int, KURL> m_matches; - TQGuardedPtr<KIO::Job> m_job; + TQGuardedPtr<TDEIO::Job> m_job; bool m_started; // TQStringList m_fields; |