summaryrefslogtreecommitdiffstats
path: root/src/fetch/entrezfetcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fetch/entrezfetcher.h')
-rw-r--r--src/fetch/entrezfetcher.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fetch/entrezfetcher.h b/src/fetch/entrezfetcher.h
index f8bc1cc..87e13ae 100644
--- a/src/fetch/entrezfetcher.h
+++ b/src/fetch/entrezfetcher.h
@@ -25,7 +25,7 @@ namespace Tellico {
#include <tqcstring.h> // for TQByteArray
#include <tqguardedptr.h>
-namespace KIO {
+namespace TDEIO {
class Job;
}
@@ -55,7 +55,7 @@ public:
virtual Data::EntryPtr fetchEntry(uint uid);
virtual Type type() const { return Entrez; }
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 Fetch::ConfigWidget* configWidget(TQWidget* parent) const;
@@ -64,7 +64,7 @@ public:
class ConfigWidget : public Fetch::ConfigWidget {
public:
ConfigWidget(TQWidget* parent_, const EntrezFetcher* fetcher=0);
- virtual void saveConfig(KConfigGroup& config);
+ virtual void saveConfig(TDEConfigGroup& config);
virtual TQString preferredName() const;
};
friend class ConfigWidget;
@@ -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();
@@ -98,7 +98,7 @@ private:
TQByteArray m_data;
TQMap<int, Data::EntryPtr> m_entries; // map from search result id to entry
TQMap<int, int> m_matches; // search result id to pubmed id
- TQGuardedPtr<KIO::Job> m_job;
+ TQGuardedPtr<TDEIO::Job> m_job;
TQString m_queryKey;
TQString m_webEnv;