]> git.lyx.org Git - lyx.git/commitdiff
Correct path names were to look for RPM based dictionaries for hunspell on Linux.
authorStephan Witt <switt@lyx.org>
Tue, 10 May 2016 16:06:48 +0000 (18:06 +0200)
committerStephan Witt <switt@lyx.org>
Sun, 12 Jun 2016 12:02:35 +0000 (14:02 +0200)
(cherry picked from commit 3a2fc1595b316e0847d25b0604ec9188d953af01)

src/HunspellChecker.cpp
status.22x

index 67c7e27cc422fc93fde4e1b8aaf639f8590333d4..24a25f239c958a9bb78adf865f5e58fa21c3879d 100644 (file)
@@ -154,9 +154,9 @@ const string HunspellChecker::Private::dictPath(int selector)
 {
        switch (selector) {
        case 4:
-               return addName(hunspellPackageDictDirectory(),dictDirectory());
+               return hunspellPackageDictDirectory();
        case 3:
-               return addName(myspellPackageDictDirectory(),dictDirectory());
+               return myspellPackageDictDirectory();
        case 2:
                return addName(package().system_support().absFileName(),dictDirectory());
        case 1:
index 06bda4a482d55d78910a5ba077f7e88dee9fb6c7..23aa481d0ee0d94ddca39a7bf17dc0233ce7bace 100644 (file)
@@ -60,6 +60,8 @@ What's new
 
 - Fix smal typo in Reference dialog (bug 10194).
 
+- Fix default location for RPM based hunspell dictionary search (bug 10071 and 10192).
+
 
 * INTERNALS