diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:14:31 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:14:31 -0600 |
commit | 145d30f0b8cbacc3599379e8717299734f3bb534 (patch) | |
tree | 3713677dce079619063612b12788282fd32e53af /src/fetch/configwidget.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/configwidget.h')
-rw-r--r-- | src/fetch/configwidget.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fetch/configwidget.h b/src/fetch/configwidget.h index 55eafb0..7230cae 100644 --- a/src/fetch/configwidget.h +++ b/src/fetch/configwidget.h @@ -20,7 +20,7 @@ #include <tqdict.h> #include <tqcheckbox.h> -class KConfigGroup; +class TDEConfigGroup; class TQStringList; namespace Tellico { @@ -43,9 +43,9 @@ public: * Saves any configuration options. The config group must be * set before calling this function. * - * @param config_ The KConfig pointer + * @param config_ The TDEConfig pointer */ - virtual void saveConfig(KConfigGroup& config) = 0; + virtual void saveConfig(TDEConfigGroup& config) = 0; /** * Called when a fetcher data source is removed. Useful for any cleanup work necessary. * The ExecExternalFetcher might need to remove the script, for example. @@ -64,7 +64,7 @@ public slots: protected: TQWidget* optionsWidget() { return m_optionsWidget; } void addFieldsWidget(const StringMap& customFields, const TQStringList& fieldsToAdd); - void saveFieldsConfig(KConfigGroup& config) const; + void saveFieldsConfig(TDEConfigGroup& config) const; private: bool m_modified; |