diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:35:07 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:35:07 -0600 |
commit | 703fb0c89c2eee56a1e613e67a446db9d4287929 (patch) | |
tree | dd8c5ca66075cd89c2638a2b48cf78386a9870a7 /kspell2 | |
parent | 818e7abec3d5d3809b6b77293558678371c16b71 (diff) | |
download | tdelibs-703fb0c89c2eee56a1e613e67a446db9d4287929.tar.gz tdelibs-703fb0c89c2eee56a1e613e67a446db9d4287929.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kspell2')
-rw-r--r-- | kspell2/settings.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kspell2/settings.cpp b/kspell2/settings.cpp index dd54cf53f..63b45e89d 100644 --- a/kspell2/settings.cpp +++ b/kspell2/settings.cpp @@ -180,7 +180,7 @@ bool Settings::ignore( const TQString& word ) void Settings::readIgnoreList() { - KConfigGroup conf( d->config, "Spelling" ); + TDEConfigGroup conf( d->config, "Spelling" ); TQString ignoreEntry = TQString( "ignore_%1" ).arg( d->defaultLanguage ); TQStringList ignores = conf.readListEntry( ignoreEntry ); setQuietIgnoreList( ignores ); @@ -189,7 +189,7 @@ void Settings::readIgnoreList() void Settings::save() { if ( d->modified ) { - KConfigGroup conf( d->config, "Spelling" ); + TDEConfigGroup conf( d->config, "Spelling" ); conf.writeEntry( "defaultClient", d->defaultClient ); conf.writeEntry( "defaultLanguage", d->defaultLanguage ); conf.writeEntry( "checkUppercase", d->checkUppercase ); @@ -203,7 +203,7 @@ void Settings::save() void Settings::loadConfig() { - KConfigGroup conf( d->config, "Spelling" ); + TDEConfigGroup conf( d->config, "Spelling" ); d->defaultClient = conf.readEntry( "defaultClient", TQString::null ); d->defaultLanguage = conf.readEntry( |