diff options
Diffstat (limited to 'src/fetch/crossreffetcher.h')
-rw-r--r-- | src/fetch/crossreffetcher.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fetch/crossreffetcher.h b/src/fetch/crossreffetcher.h index 1bcb009..a39d69c 100644 --- a/src/fetch/crossreffetcher.h +++ b/src/fetch/crossreffetcher.h @@ -51,7 +51,7 @@ public: virtual Data::EntryPtr fetchEntry(uint uid); virtual Type type() const { return CrossRef; } virtual bool canFetch(int type) const; - virtual void readConfigHook(const KConfigGroup& config); + virtual void readConfigHook(const TDEConfigGroup& config); virtual void updateEntry(Data::EntryPtr entry); virtual void updateEntrySynchronous(Data::EntryPtr entry); @@ -61,7 +61,7 @@ public: class ConfigWidget : public Fetch::ConfigWidget { public: ConfigWidget(TQWidget* parent_, const CrossRefFetcher* fetcher = 0); - virtual void saveConfig(KConfigGroup& config); + virtual void saveConfig(TDEConfigGroup& config); virtual TQString preferredName() const; private: KLineEdit* m_userEdit; @@ -72,8 +72,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(); @@ -86,7 +86,7 @@ private: TQByteArray m_data; TQMap<int, Data::EntryPtr> m_entries; - TQGuardedPtr<KIO::Job> m_job; + TQGuardedPtr<TDEIO::Job> m_job; FetchKey m_key; TQString m_value; |