summaryrefslogtreecommitdiffstats
path: root/katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp')
-rw-r--r--katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp b/katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp
index fce2495..0e75cd8 100644
--- a/katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp
+++ b/katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp
@@ -82,12 +82,12 @@ bool SpellCatalog::accepts(const TQString& str) const
return str.left(length + 1) == _triggerWord + " ";
}
-void SpellCatalog::readSettings(KConfigBase* config)
+void SpellCatalog::readSettings(TDEConfigBase* config)
{
_triggerWord = config->readEntry("TriggerWord", i18n("Should be short, easy and quick to type", "spell"));
}
-void SpellCatalog::writeSettings(KConfigBase* config)
+void SpellCatalog::writeSettings(TDEConfigBase* config)
{
config->writeEntry("TriggerWord", _triggerWord);
}