From 703fb0c89c2eee56a1e613e67a446db9d4287929 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 00:35:07 -0600 Subject: Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 --- kspell2/settings.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kspell2') 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( -- cgit v1.2.1