diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:21 -0600 |
commit | 86d8364ac704bdc8ad2dfcf52307d9626cfac567 (patch) | |
tree | 97d3ac2c2f60780d9a1de4f82caac7cb27534501 /korn/maildrop.cpp | |
parent | a9bde819f2b421dcc44741156e75eca4bb5fb4f4 (diff) | |
download | tdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.tar.gz tdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'korn/maildrop.cpp')
-rw-r--r-- | korn/maildrop.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/korn/maildrop.cpp b/korn/maildrop.cpp index 9d2f12f67..20b6dfe9d 100644 --- a/korn/maildrop.cpp +++ b/korn/maildrop.cpp @@ -72,7 +72,7 @@ void KMailDrop::forceCountZero() emit changed( 0, this ); } -void KMailDrop::readGeneralConfigGroup( const KConfigBase& cfg ) +void KMailDrop::readGeneralConfigGroup( const TDEConfigBase& cfg ) { _passivePopup = cfg.readBoolEntry(fu(PassivePopupConfigKey), false ); _passiveDate = cfg.readBoolEntry(fu(PassiveDateConfigKey), false ); @@ -82,7 +82,7 @@ void KMailDrop::readGeneralConfigGroup( const KConfigBase& cfg ) emit(configChanged()); } -bool KMailDrop::readConfigGroup(const KConfigBase & c) +bool KMailDrop::readConfigGroup(const TDEConfigBase & c) { _caption = c.readEntry(fu(CaptionConfigKey)); _clickCmd = c.readPathEntry(fu(ClickConfigKey)); @@ -103,7 +103,7 @@ bool KMailDrop::readConfigGroup(const KConfigBase & c) return true; } -bool KMailDrop::writeConfigGroup(KConfigBase & c) const +bool KMailDrop::writeConfigGroup(TDEConfigBase & c) const { c.writeEntry(fu(TypeConfigKey), type()); c.writeEntry(fu(CaptionConfigKey), caption()); |