[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#403856: [kdelibs4]: Aspell-0.60 and KSpell not fixed in stable (kmail)



Package: kdelibs4
Version:4:3.3.2-6.4
Tags: patch

BugFix for  296240
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=296240
only contains a partial fix for the problem.

KMail which is using KSpellConfig:fillDicts does
not work correctly with this. 

Attached a patch to fix it there too.


Looks like it's not fully fixed in stable, don't know
how it's in testing/unstable.


Helmut
===================================================================
RCS file: /home/kde/kdelibs/kdeui/ksconfig.cpp,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- kdelibs/kdeui/ksconfig.cpp	2004/11/15 19:26:56	1.88
+++ kdelibs/kdeui/ksconfig.cpp	2005/01/31 18:07:49	1.89
@@ -496,6 +496,8 @@
   // FIXME: use "aspell dump config" to find out the dict-dir
   QFileInfo dir ("/usr/lib/aspell");
   if (!dir.exists() || !dir.isDir())
+    dir.setFile ("/usr/lib/aspell-0.60");
+  if (!dir.exists() || !dir.isDir())
     dir.setFile ("/usr/local/lib/aspell");
   if (!dir.exists() || !dir.isDir())
     dir.setFile ("/usr/share/aspell");
@@ -637,6 +639,8 @@
       // FIXME: use "aspell dump config" to find out the dict-dir
       QFileInfo dir ("/usr/lib/aspell");
       if (!dir.exists() || !dir.isDir())
+        dir.setFile ("/usr/lib/aspell-0.60");
+      if (!dir.exists() || !dir.isDir())
         dir.setFile ("/usr/local/lib/aspell");
       if (!dir.exists() || !dir.isDir())
         dir.setFile ("/usr/share/aspell");


Reply to: