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/execexternalfetcher.cpp | |
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/execexternalfetcher.cpp')
-rw-r--r-- | src/fetch/execexternalfetcher.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fetch/execexternalfetcher.cpp b/src/fetch/execexternalfetcher.cpp index 1ba084f..4b45520 100644 --- a/src/fetch/execexternalfetcher.cpp +++ b/src/fetch/execexternalfetcher.cpp @@ -90,7 +90,7 @@ bool ExecExternalFetcher::canFetch(int type_) const { return m_collType == -1 ? false : m_collType == type_; } -void ExecExternalFetcher::readConfigHook(const KConfigGroup& config_) { +void ExecExternalFetcher::readConfigHook(const TDEConfigGroup& config_) { TQString s = config_.readPathEntry("ExecPath"); if(!s.isEmpty()) { m_path = s; @@ -460,7 +460,7 @@ ExecExternalFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const ExecExt ExecExternalFetcher::ConfigWidget::~ConfigWidget() { } -void ExecExternalFetcher::ConfigWidget::readConfig(KConfig* config_) { +void ExecExternalFetcher::ConfigWidget::readConfig(TDEConfig* config_) { m_pathEdit->setURL(config_->readPathEntry("ExecPath")); TQValueList<int> argKeys = config_->readIntListEntry("ArgumentKeys"); TQStringList argValues = config_->readListEntry("Arguments"); @@ -513,7 +513,7 @@ void ExecExternalFetcher::ConfigWidget::readConfig(KConfig* config_) { m_newStuffName = config_->readEntry("NewStuffName"); } -void ExecExternalFetcher::ConfigWidget::saveConfig(KConfigGroup& config_) { +void ExecExternalFetcher::ConfigWidget::saveConfig(TDEConfigGroup& config_) { TQString s = m_pathEdit->url(); if(!s.isEmpty()) { config_.writePathEntry("ExecPath", s); |