summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tdeui/ksconfig.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tdeui/ksconfig.cpp b/tdeui/ksconfig.cpp
index a9958dea9..ddae27e25 100644
--- a/tdeui/ksconfig.cpp
+++ b/tdeui/ksconfig.cpp
@@ -188,7 +188,11 @@ KSpellConfig::readGlobalSettings()
setDictionary ( kc->readEntry("KSpell_Dictionary") );
setDictFromList ( kc->readNumEntry("KSpell_DictFromList", false) );
setEncoding ( kc->readNumEntry ("KSpell_Encoding", KS_E_UTF8) );
+#ifdef __OpenBSD__
+ setClient ( kc->readNumEntry ("KSpell_Client", KS_CLIENT_ASPELL) );
+#else
setClient ( kc->readNumEntry ("KSpell_Client", KS_CLIENT_ISPELL) );
+#endif
return true;
}